| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
The Basic Web Page
| <HTML> | All Documents start with these first two tags | |
| <HEAD> | ||
| <TITLE>Your title</TITLE> | This text appears at the top of your browser | |
| </HEAD> | Closing tag for header | |
| <BODY BGCOLOR ="#FFFFF"> | Indicates start of document body.Instructions for background colors, link and text colors are placed here. | |
| <H1> Hello, World!</H1> | Text here will be bold, of size 6 and have a line break placed before and after the text. | |
| <HR> | Horizontal Line break. Will draw a shadowed, line across the page. | |
| <BR> | Line break | |
| </BODY> | ||
| </HTML> |