Learning Html
This section is the third section on how to create a web page.
This section concerns the <body> element.
Below the </head> tag type in: <body> and a few lines below that type in: </body>
The main portion of your web page (text, tables, graphics, etc.) will be contained
between the <body> and </body> tags.
Inside the <body> and </body> tags
Your page should now look something like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> type title here </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META NAME="KeyWords" CONTENT=" type words for search engine look-up here ">
<META NAME="description" Content=" type the discription of your page here ">
<body>
</body>
</head>
</html>
Click to go back to the first section: <html>
To go to the last section: <head>
Or, to go back to the how-to: HTML How-To