Choose the appropriate inline CSS font style to display the given text in Cursive.
Select one:
<h1 style="font-style:cursive">Welcome</h1>
<h1 style="font-weight:cursive">Welcome</h1>
<h1 style="font-family:cursive">Welcome</h1>
<h1 style="font:cursive">Welcome</h1>
Answers
Answered by
25
Answer:
<h1 style=''font-family : cursive''> Welcome</h1>
is correct answer.
Answered by
0
Answer:
The correct answer is <h1 style=''font-family : cursive''> Welcome</h1>.
Explanation:
- There are five fundamental types of fonts in CSS: serif, sans serif, cursive, fantasy, and monospace.
- To style an element with inline styles, add the style property to an HTML tag followed by your CSS. In our situation, the first paragraph's text is red with a font size of 20px.
- The font-style CSS property specifies whether a font should be styled using its font-normal, family's italic, or oblique face.
- Inline CSS is a style that is applied to a single HTML element. The style attribute of an HTML element is used in an inline CSS.
#SPJ3
Similar questions