Tutorial User Guide > Introduction to HTML > Example of a Simple HTML Page
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX''">XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX''">   
Example of a Simple HTML Page
The required elements of an HTML document are <html>, <head>, <title> and <body> with their corresponding end tags. For example:
<html>
<head>
<TITLE> A Simple HTML Example </TITLE>
</head>
<body>
<H1> HTML is fun! </H1>
<p>
This is the first paragraph.</p>
<p> And this is the second paragraph.
</p>
</body>
</html>
An HTML document contains two distinct parts, the head and the body. The head contains information about the document that isn’t displayed to the screen. The body contains everything displayed as the web page.
For additional information, there are several web-based HTML training sites:
http://www.mcli.dist.maricopa.edu/tut/index.html
http://www.w3schools.com/html/default.asp
http://www.htmlgoodies.com/primers/html/
http://www.htmlcodetutorial.com/
http://www.cwru.edu/help/introHTML/toc.html