FREE HTML CODE
Search HTML Code

HTML Font Style Code

In HTML, font style is specified using CSS (Cascading Style Sheets). Font style refers to whether the font is presented in italics or normal. You can use the following HTML code to specify font style within your HTML documents.
TIP: You can also format your HTML text using the HTML text generator.

If you don't want to use the HTML text generator, copy the following code and paste into your HTML document (then change the values to suit) :


<p style="font-style:normal;">Font style is normal</p>
<p style="font-style:italic;">Font style is italic 
<span style="font-style:normal"> back to normal</span> 

back to italics again.</p>


This code results in:
Font style is normal
Font style is italic back to normal back to italics again.


You can do much more with fonts. Check out the following links. These are the different CSS font/text properties available:

  • font (this sets many of the following font properties)
  • font-family
  • font-size
  • font-size-adjust
  • font-stretch
  • font-style
  • font-variant
  • font-weight
  • letter-spacing
  • line-height
  • color
  • background-color
  • text-align
  • text-decoration
  • text-indent
  • text-shadow
  • text-transform
| More