|
-
Dec 4th, 2005, 06:46 PM
#1
Thread Starter
Frenzied Member
font question
Code:
<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
-
Dec 4th, 2005, 10:45 PM
#2
PowerPoster
Re: font question
Fonts:
HTML Code:
<p><font size="9" face="Tahoma">Hello</font></p>
Link:
HTML Code:
<a href="./mylocation.html">Link Title</a>
You need to make sure you include Body Tags as well, so it should look like,
HTML Code:
<html>
<body>
<p><font size="9" face="Tahoma">Hello</font></p>
</body>
</html>
-
Dec 5th, 2005, 01:57 AM
#3
-
Dec 5th, 2005, 05:07 PM
#4
Thread Starter
Frenzied Member
Re: font question
thanks but when i do
<font size="8" face="Tahoma">
the font goes huge
-
Dec 5th, 2005, 05:22 PM
#5
PowerPoster
Re: font question
Ohh.. right, sorry, CSS has corrupted me. 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>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|