How do you change the font style with basic HTML?

like just basic AND THAT YOU TYPE IT not a "translator"

Public Comments

  1. http://www.tizag.com/htmlT/font.php that should tell you all you need to know
  2. here is a website that will teach you how to HTML code its very useful and i use it myself sometimes http://www.w3schools.com/HTML/html_fonts.asp
  3. Basic HTML uses the Font tag with the Face attribute.. : <font face="harrington">This is Harrington Font</font> See the Fonts at http://thurmania.com/Fonts.html Use the testbed to copy and paste any of those fonts and then 'view' the text and Back button back to the bed to tweak the font face. You'll need to enlarge many of them to show well, so include the Size attribute like so...: <font face="harrington" size="6">Big Harrington</font> http://thurmania.com/Testbed.html
  4. just type <font face=FONT NAME HERE> type whatever you want to type here that will appear with the changed style</font> </font> is what ends the style change or whatever you want to call it. replace FONT NAME HERE with.. well.. the name of the font. like if the default is Times New Roman and you want it to be Arial you type in Arial where it says FONT NAME HERE. If you have a font you downloaded onto your computer that's not on other ppl's computer, if you put that name, then only ppl who have it installed in their comps can see it, otherwise it'll just show up as the default one. and other html codes for changing the font are: <b> bold it </b> <u> underline </u> <s> strikeout (line in the middle of it like your crossing it out) </s> <i> italicize</i> <font size="# here"> changes the font size </font> <big> makes it one size bigger</big> <small>makes it one size smaller</small>
  5. Do not use the font tags as some have used in their examples. Deprecated tags. For the whole page use this between your head tags: <style type="text/css"> body { font-family: verdana, georgia, 'times new roman', serif, sans-serif; } </style> This will specify your preferred font family in the order you want them used should the font not be on another computer. For changing within a paragraph for a sentence or one/two words: <p>This will change this one <span style="font-family: 'comic sans ms';">word</span> to Comic Sans MS font.</p> Ron
Powered by Yahoo! Answers