making a html website/font help?

  • Thread starter Thread starter jess
  • Start date Start date
J

jess

Guest
i'm trying to make a website using html and notebook but it's not letting me use specific fonts (specifically bradley hand itc). is there a reason for this/can i use that font on my web page?

i've been doing <font = bradley hand itc > and it's not working
thanks!
 
The <font> tag is deprecated, use CSS instead.

For example:

Part of text in a particular font
<span style ="font-family: 'bradley hand itc';">Text here</span>

Whole page in a particular font
<style type="text/css">
body {font-family: 'bradley hand itc';}
</style>
 
Back
Top