HTML OPEN TAG - start HTML code HEAD OPEN TAG - start the head HEAD CLOSE TAG - end the head BODY OPEN TAG - start the body of the page BODY CLOSE TAG - end the body of the page HTML CLOSE TAG - end the HTML code |
The HEAD contains important information about the page which does not appear in the pages.
The BODY contains all of the information shown on the page.
You can add the title to a page by adding the TITLE tags inside the head.
The title shows at the top of your browser and also in your favorites/bookmarks and on search engines.
You can add images (pictures) to your page by adding an IMG tag in the body.
The image SRC must equal the path to your image file. Think of 'SRC' as in Source.
You do not need a close (end) tag for images, just add ' /' to the tag.
You can add links to your page by adding an A tag. Think of 'A' as in Action! because the link takes you to a file.
The action HREF must equal the url (path) to the file. Think of 'HREF' like Hyperlink Reference.
After the open tag you can put text or other code. This is what visitors click to take action.
Don't forget the close tag at the end.