HTML files can be created in several different ways:
The most pronounced feature of HTML are the tags which are used to identify all objects, formats, and layout of a web page. Tags always appear in a pair of brackets <>. Most tags are followed by matching ending tags, which have a slash symbol </ >. Tags are case-insensitive.
|
<HTML> <BODY> |
the <HTML> tag starts the page. this tag indicates the header. the title appears at the top of the browser window. this tag closes the header. main body of page begins here. main body of page ends here. </HTML> tag ends the document. |
Exercise 1
|