The components of an HTML document.

HTML documents use special tags contained in angled brackets: < TAG >
These tags affect the way sections of text appears in a browser.
To end a section of text use < /TAG >.

All of the source code is containd within the tag < html > and < /html >.
The title you see on the title bar of your browser's window is contained wihtin the tag < title > and < /title >. This is like setting the title of a JFrame.
Everything else you see is containd within the tag < body > and < /body >.


You can select View | Page Source from your browser to view the source code that produced this web page.

Click here to return to the main page.