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

Writing html

Body and Head (optional too, but they help the browser know where to find things)
Web pages are divided into two sections. The body and the head, just like us if we had no arms and legs.
The Head is where you define the title of your page, include information used by search engines to find your site, write scripts in like javascript, and add advanced formatting.
After the <html> tag add the <head> tag leave a few spaces and then put in the end </head>
tag
After the <head> tag, type in the <body> and </body> tags. Space in between.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>

</body>
</html>