Tutorials
16-B. HTML Basics
Introduction
<HTML> - This tag tells the browser that the information here is HTML
<HEAD> - This is the beginning of the HEADER
<TITLE>TITLE OF PAGE</TITLE> - This is the title of the page
</HEAD> - This is the end of the HEADER
<BODY BGCOLOR="#000000" TEXT="#FFFFFF" LINK="#FFFF00" VLINK="#808000" ALINK="#0000FF" BACKGROUND="image.gif">
| | | | | |
| | | | ACTIVE LINK COLOR |
| | | VISITED LINK COLOR |
| | LINK COLOR |
| TEXT COLOR |
BACKGROUND COLOR LOCATION OF BACKGROUND IMAGE---------+
The BODY tag tells the browser that everything between it and the
closing BODY tag is to be displayed on the screen
</BODY> - This is the closing BODY tag
</HTML> - This tag indicated that this is the end of the HTML code