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

Writing html

Text Formatting: (0ptional)
Text formatting may seem to be a pain at first. You can't just choose a font from a list of fonts.
But, the blessing is that with style sheets you can change all the fonts in your pages instantly.
Deprecated Tags: Many text formatting tags will not be supported inthe future.
Cascading Style Sheets will be the method for formatting text. But, right now, so many pages use these tags and older browsers don't support CSS.
You can choose the font that you want to use, but the user may not have the font and then their browser will just select a default from their system.
the font tag specifies font type, font size, and font color.
before the text to be changed put in the <font> tag, close with a </font> tag.
font name is in "", quotation marks. If you want to choose a second choice if they don't have that font, put in a "," comma and then the next font name.


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>
<h1>Here Is My Pony</h1>
<h4 align="left">Isn't she lovely?</h4>
<font face="Lithos Black, Chicago">
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. 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.</font>
<p />
<font face="New Century, SnellRoundHand Script, san-serif" size="5">

Grooming is also fun, but lots of work. And I get tired easily combing their hair.
</font>
<p />
<font face="Hi-Score" size="4" color="#121212">

When I rode my horse the other day, we jumped over these really big logs and a stream.<br />
It was so fun. I think the horse liked it too. Anyway, we rode all day, me and Cinnamon.<br />It was lovely. She is the best horse ever.</font>
<p />
<font size="1">
She loved the rain. When we would go out in the rain, she would turn her head up and lick the raindrops, snorting occasionally when they would fill up her nostrels.</font>
<p />
<font color="red">
Cinnamon was such a crazy horse. She never knew when to stop and take a break. I would want to get off, and she wouldn't let me. But, eventually she would grow tired, or maybe it was the carrots near by, and she would stop.</font>
</body>
</html>