make font larger

admin

Administrator
Staff member
I am making a small table in html. I would like the font to be larger. So I can only control the size in a table my using <h1> type. <br />
<br />
I tried typing in Font size="20" with all the correct brackets, but it doesn't work. <br />
<br />
How do I get larger Font. I would like it like 28 or 36 size in Word. <br />
<br />
TIA<br />
<br />
<br />
<table border=0 Cellspacing=0 align=center ><br />
<tr><br />
<td><h1> No Magic Neon?lt;/h1></td> <br />
<table border=0 Cellspacing=0 align=center><br />
<tr><br />
<td><h6>Division of Stealth Performance Inc.</h6></td> <br />
</table><!--content-->First of all, you need two </tr>'s and a </table> in there.<br />
<br />
<font size="30">large text here</font><br />
<br />
That should work...?<br />
<br />
tom<!--content--><font style="font-size: 28pt">TEXT</font><br />
<br />
this code will work for you<!--content-->the dreaded <font> tag :P <br />
<br />
it's been deprecated for a good while now, use css instead:<br />
<br />
inbetween you <head> tags<br />
<br />
<style type="text/css"><br />
span.bold {font:bold italic 20px serif;color:#000000;}<br />
</style><br />
<br />
<br />
<br />
in your html<br />
<br />
<span class="bold">text here</span><br />
<br />
<br />
:)<!--content-->thank you all for your help<!--content-->
 
Back
Top