Month 1 Week 3

Understanding the Basics

The Body Section

The "Body" section of the web page contains just about everything the visitor sees, from information on graphics to links to scripts to just plain text - like this! 

Much like the "Head", the "Body" uses both an open and a close tag -

<BODY>
</BODY>

So if you were to re-write your test page, it would end up looking something like this -

<HTML><HEAD>
<TITLE>
My Test Page
</TITLE>
</HEAD>
<BODY>
<H1>HTML is fun!</H1>
</BODY>
</HTML>

Notice the two additional tags - HTML open and HTML close - which tell the browser that it is getting an HTML document.

Continue

©2003, Gnosis 4-H Club
The 4-H name and 4-H logo are service marks protected under 18 U.S.C. 707.

Questions? Comments? Problems? Contact the Webmaster!


Month 1 Week 3