html? bigger and colors?

<font face="tahoma">your text here</font> how would i make this bigger and different colors?

Public Comments

  1. <font color=red size=+2 face="tahoma">your text here</font>
  2. <fontsize=12> <fontcolor=pink>
  3. <big> TEXT </big> <font size="+NUMBER YOU WANT"> TEXT </font> ++ 0THER C0DES ++ <font size ="-NUMBER Y0U WANT"> SMALL </font> <small> SMALL </small> <b> BOLD </b> <i> ITALICS </i> <s> STRIKETHROUGH </s> <u> UNDERLINE </u> <sup> MAKE TEXT UPPER </sup> <sub> MAKE TEXT BELOW </sub> <font color="COLOR YOU WANT"> COLOR </font> <center> CENTER TEXT </center>
  4. [color=blue][size=18]<font face="tahoma">your text here</font>[/size][/color] You can use any size or type any color and it will pretty much work :-)
  5. <font size="100" font color="red"> txt here </font> and try these too. http://www.computerhope.com/htmcolor.htm font color="#2B65EC" or font color:#2B65EC if the other one doesn't work. good luck
  6. To make it a different size, add the "size" attribute: <font face="tahoma" size="4">your text here</font> At the size="4" part, 4 could be any number between 1 and 7. To change the color, add the "color" attribute: <font face="tahoma" color="#FF0000">your text here</font> The FF0000 could be any HTML hexidecimal. To see all the color codes, click here: http://w3schools.com/html/html_colors.asp
  7. Be aware that the font element is deprecated in xhtml. A better way is to set a class on the text you want to style and use css. In your stylesheet: .mytext { font-family: tahoma; font-size: large; color: red; } In your markup: <span class="mytext">your text here</span>
  8. Thumbs up for Daa, as the only one to point out the font tag has deprecated. some peoples help is actually a hindrance.
Powered by Yahoo! Answers