The <br /> tag is used when you want to end a line, but don't want to start a new paragraph. The <br /> tag forces a single line break wherever you place it.
<br><hr width="80%">
<a name="#hr"></a>
<h2>The <hr /> tag:</h2>
The <hr /> tag inserts a horizontal rule. A line across your webpage. There are several optional attributes which may be used with this tag.
<br><br>
align - Specifies the alignment of the horizontal rule. Left, centered or right justified.
<br><br>
noshade - When set to true the rule should render in a solid color, when set to false the rule should render in a two-color "groove".
<br><br>
size - Specifies the thickness (height) of the horizontal rule.
<br><br>
width - Specifies the width of the horizontal rule.
<br><br>
<b>example:</b><br>
<hr align="center" width="50%" />
<br>
This example tag would create a horizontal rule, half the width of your webpage and centered.
<br><hr width="80%">
<a name="#center"></a>
<h2>The <center> tag:</h2>
Centers all text and objects contained within the <center> and </center> tags.
<br><hr width="80%">
<a name="#font"></a>
<h2>The <font> tag:</h2>
The <font> tag specifies the font face, size and color of text placed between the <font> and </font> tags. There are several attributes which may be used with this tag.
<br><br>
face - Defines the font type, such as ariel.
<br><br>
size - A number from 1 to 7. Defines the size of the font.
<br><br>
color - Defines the color of the font.
<br><hr width="80%">
<a name="#image"></a>
<h2>The <img /> tag:</h2>
The <img /> tag defines an image. There is one required attribute, src="" which defines the location of your image. There are also several optional attributes which may be used.
<br><br>
alt - Defines a short description of the image.
<br><br>
align - Specifies how to align the image.
<br><br>
height - Defines the height of an image in pixels.
<br><br>
width - Defines the width of an image in pixels.
<br><br>
border - Defines a border around an image.
<br><hr width="80%">
<a name="#table"></a>
<h2>The <table> tag:</h2>
The <table> tag defines a table. Inside a <table> tag you can put table headers, table rows, table cells, and other tables.
<br><br>
Tables are a very complex HTML element. Whole books have been written on their use and attributes. For more in-depth information than can be provided here, a very well prepared reference on tables can be found at: <a href="http://www.w3schools.com/tags/tag_table.asp" target="_newz">http://www.w3schools.com/tags/tag_table.asp</a>
<br><hr width="80%">
<a name="#link"></a>
<a name="#email"></a>
<h2>The <a> tag:<br>
Hyperlinks and Email</h2>
The <a> (anchor) tag defines an anchor element. An anchor can be used in two ways:
<br>1. To create a link to another document by using the href attribute<br><a href="http://www.SomeWebsite.com">
<br>2. To create a bookmark inside a document, by using the name or id attribute<br><a name="SomeName">
<br>3. To create an email link, by using the href attribute<br><a href="mailto:SomeEmailAddress">
<br><hr width="80%">
<a name="#h"></a>
<h2>The <h#> tag:</h2>
The <h1> to <h6> tags define headers. <h1> defines the largest header and <h6> defines the smallest.
<br><hr width="80%">
<a name="#bold"></a>
<h2>The <b> tag:</h2>
The <b> and </b> tag defines bold text.
<br><hr width="80%">
<a name="#pre"></a>
<h2>The <pre> tag:</h2>
The pre element defines preformatted text. The text enclosed between the <pre> and </pre> element preserves spaces and line breaks.
<br><hr width="80%">
<a name="#i"></a>
<h2>The <i> tag:</h2>
The <i> tag defines Italic text.
<br><hr width="80%">
<a name="#p"></a>
<h2>The <p> tag:</h2>
The <p> tag defines a paragraph.
<br><hr width="80%">
<a name="#quote"></a>
<h2>Quotes<br>The <blockquote> tag:</h2>
The <blockquote> tag defines a quotation.
<br><hr width="80%">
<a name="#list"></a>
<h2>Lists<br>The <ol> tag:</h2>
The ordered list tag defines an ordered (numbered) list.
<br><hr width="80%">
<a name="#ul"></a>
<h2>The <ul> tag:</h2>
The unordered list tag defines an unordered list. It has the same attributes as an ordered list, but the items will be bulleted instead of numbered.