Computer Science, asked by chandanachalamcharla, 2 months ago

To display the text as in default font style, which of the following styles should you apply?

Select one:

font-style:italic; 

font-style:normal; 

font-style:bold;

font-style:default; ​

Answers

Answered by gnanaharish03
24

Answer:

Font-style : normal

Explanation:

Default Syntax !

Answered by vishakasaxenasl
0

Answer:

To display the text as in default font style, we write:

font-style: normal;

Explanation:

font-style is CSS property that is used to style the font of the text. It can one of the three values:

  • font-style: normal;

It will display the text in the default style of the browser.

  • font-style: italic;

This will display the text in italic style like Text in Italic

  • font-style: oblique;

This style is similar to italic except that letters of text are more skewed.

#SPJ3

Similar questions