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

Writing html

Title Tag: (required)
each html page must have a title. A title should be short and descriptive. The title will appear in the title bar of the window, so keep that in mind. And it is used in search indexes.
Place the cursor between the open and closing <head> tags
a title cannot link to things


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>

</body>
</html>