Does anyone know a good site with HTML font codes?

I am looking for a site with HTML codes to decorate text. I already know how to do colors and sizes, but are there any sites with unique fonts?

Public Comments

  1. ... haha? All there is italics <i></i> bold <b></b> and underline <u></u> But most people use CSS instead of HTML tags for text-decoration...
  2. The font is dicated by the users computer. <font face="veranda"> some text </font> So whatever common fonts are on all computers are the ones to use.
  3. www.allfonts.com great site!
  4. http://www.htmlgoodies.com/tutorials/colors/article.php/3478961 http://www.htmlcodetutorial.com/ http://www.web-source.net/html_codes_chart.htm http://www.w3schools.com/html/html_fonts.asp http://www.askwebmaster.com/html-font-codes-trtd.htm
  5. http://www.howtodothings.com/computers/a3256-how-to-learn-html-code-tags.html
  6. You need to do this with CSS and not a tag, seeming that the <font> tag has been deprecated since HTML 4.0 and isn't even apart of the new XHTML standards formatting. Make a font family, font families are fonts that are lined up (fonts with spaces are put in ' x ') in order, so if my computer doesn't have Verdana it will move to the next font. You can also achieve text decorations like <i>, <b> and so forth via css (which is highly recommended seeming that those tags have also been deprecated as of HTML 4.0) You can view tech specific examples at W3C Schools: http://www.w3schools.com/css/default.asp http://www.w3schools.com/css/css_font.asp http://www.w3schools.com/css/pr_text_text-decoration.asp http://www.w3schools.com/css/pr_text_color.asp http://www.w3schools.com/css/pr_font_font-family.asp
  7. do not use B and I tags they are deprecated. If you cannot use CSS or do not know how then replace B with strong and i with em
Powered by Yahoo! Answers