HTML Codes!!!?

I just want to know what is the exact HTML code for the text color: Font Size, Font Style & Color. And also the marquee: Marquee Style, Font Size, Font Style & Color. Thanks!!!

Public Comments

  1. <font size="fontsizehere">text here</font> <font face="font style here">text here</font> <font color="font color here">text here</font>
  2. http://www.w3schools.com/html/default.asp
  3. <font size="fontsizehere">text here</font> <font face="font style here">text here</font> <font color="font color here">text here</font> <marquee>text here</marquee> <marquee behavoir=alternate>text here</marquee>
  4. Be aware that the <font> tag is deprecated. It would be better to use css styles instead. body { font-family: arial, helvetica, sans-serif; font-size: medium; font-style: italic; color: black; }
Powered by Yahoo! Answers