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

Writing html

Choosing a Default Color For Text: (optional)
you can set some attributes in the body tag to create a default color for you text.
The user can set default colors for text in their browser that will override your color choices.
Type in "text" in the <body> tag and put "=" and either a hex number or one of the 16 predefined colors.


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 text="red">
<h1>Here Is My Pony</h1>
<h4 align="left">Isn't she lovely?</h4>
<font face="Verdana">
I like ponies. They are lots of fun and <big><big><strong>furry</strong></big></big>. 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 <small><strong>furry</strong></small>. Sometimes I like to ride them. Galloping is my favorite. Very fast.</font>
</body>

</html>