PDA

Click to See Complete Forum and Search --> : font question


Pouncer
Dec 4th, 2005, 05:46 PM
<html>
<h1>Heading</h1>
<p>Hello</p>
<html>


how do i make the font of 'hello' tahoma, size 9?

and also, can someone show me how to do hyperlinks

Pc_Madness
Dec 4th, 2005, 09:45 PM
Fonts:
<p><font size="9" face="Tahoma">Hello</font></p>

Link:
<a href="./mylocation.html">Link Title</a>

You need to make sure you include Body Tags as well, so it should look like,

<html>
<body>
<p><font size="9" face="Tahoma">Hello</font></p>
</body>
</html>

visualAd
Dec 5th, 2005, 12:57 AM
Moved to the HTML Forum

Pouncer
Dec 5th, 2005, 04:07 PM
thanks but when i do

<font size="8" face="Tahoma">

the font goes huge :ehh:

Pc_Madness
Dec 5th, 2005, 04:22 PM
Ohh.. right, sorry, CSS has corrupted me. :p size can be from 1 to 7 (one smallest) and the default is 3. So to get an 8pt font you would need to set it too "2" I think from memory.

If you really want to specify it in 'points' (ie like Word has it) then you need to use CSS, <span style="font-family:Tahoma;font-size:8pt">My Words</span>