HTML
A subset of the....
HTML documents consist.....
End of Example
Once again, here is what the top part of this page looks like in HTML:
<HTML>
<HEAD>
<TITLE> Writing For The Web</TITLE>
</HEAD>
<BODY>
<H1>HTML </H1>
<P>A subset of the.....</P>
<P>HTML documents consist.....</P>
</BODY>
</HTML>
In the above example:
- The <HTML> tag indicates it is an HTML document.
- The <HEAD> tag (and corresponding
</HEAD>) indicates the portion of the document which
is the HEAD.
- The <TITLE> tag (and corresponding
</TITLE>) specifies the title of the document
which appears in the
title bar across the top of the browser window.
- The <H1> header tag (and corresponding
</H1>)
defines the name of the page as it appears within the document.
- The <BODY> tag (and corresponding
</BODY>) indicates the portion of the document which
is the BODY.
- Finally, the <P> (and corresponding
</P>) tag separates the two paragraphs.
Return to: HTML
Page Updated: Tuesday, 28-Jan-97
http://bones.med.ohio-state.edu/eric/papers/primer/example1.html