<class home>  <html part I>   <back   next>

Writing html

Basefont tag: (optional)
You can choose a default size for the all the text in your document. You set this with the
<basefont size="n" /> tag. No Closing tag.
Put it in the beginning of your body area.
if you want to change the font for a particular section you can do this with the font tag.
Windows text is larger than Mac
Basefont works with the default font sizes set by the users browser.
Basefont does not affect headers


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PONIES PONIES PONIES</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<basefont size="2" />
<h1>Here Is My Pony</h1>
<h4 align="left">Isn't she lovely?</h4>
<font face="Lithos Black, Chicago">
I like <strong>ponies</strong>. They are lots of fun and furry. Sometimes I like to ride them. Galloping is my favorite. Very fast. I like ponies. They are lots of fun and furry. Sometimes I like to ride them. Galloping is my favorite. Very fast. I like ponies. They are lots of fun and furry. Sometimes I like to ride them. <address>Galloping</address> is my favorite. Very fast.</font>
<p /><font face="New Century, Futura ExtraBold, san-serif">
<em>Grooming</em> is also fun, but lots of work. And I get tired easily combing their hair.
</font>
<p /><font face="Garamond Bold" size="5" color="#121212">
When I rode my <em>horse</em> the other day, we <cite>jumped</cite> over these really big logs and a stream.
It was so fun. I think the <strong>horse</strong> liked it too. Anyway, we rode all day, me and Cinnamon.It was lovely. She is the best horse ever.</font>
</body>
</html>