Common tags used in HTML include:
<HTML></HTML>
Defines the page as an HTML document
<BODY></BODY>
All page content goes between the Body tags
<P>
Begin Paragraph tag
<H1></H1>
Header tags; can be assigned different styles
<B></B>
Bolds the text
<I></I>
Italicizes the text
<U></U>
Underlines the text
<IMG SRC=\"filename\">
Displays an image (graphic file name must be specified)
<A HREF=\"url\">Link text goes here</A>
Links to another Web page (URL of the linked page must be specified)
Note: Most HTML tags require a beginning tag and an ending tag. Any content between the two tags is displayed according to the tag's characteristics.