The Basic Structure of a Page
| <HTML> |
begins the document,
tells the computer that what follows is written in HTML |
|
|
| <HEAD> |
begins the header |
| <TITLE>
My first Web Page </TITLE> |
displayed at the
very top of the browser |
| </HEAD> |
ends the header |
|
|
| <BODY> |
begins the body,
the real content of the page |
|
|
| </BODY> |
ends the body |
|
|
| </HTML> |
ends the document |
|