AN INTRODUCTION TO HTML

AN ABSOLUTELY MINIMUM HTML DOCUMENT

    <HTML>
    <HEAD>
    <TITLE>Window Title</TITLE>
    </HEAD>
    <BODY>
    <P>A paragraph of text in
    the body of the document.
	
    <P>A second paragraph of text.
    </BODY>
    </HTML>
VIEW RESULTS OF ABOVE CODE

The entire document should consist of a <HTML> ... </HTML> element.

Inside the HTML element there should be a sequence consisting of two elements:


[ TOC | BACK | NEXT ]
Updated: Nov 25, 1995