Some Basic HTML Tags


<p> Used to indicate a paragraph element.
Most common attribute: align="left | center | right"
<br />  Line break.
<hr />   Horizontal rule.
Most common attribute: width="100% | 100px"
<h1>  Used for headers and titles. <h2>, <h3>, and <h4> get progressively smaller.
<strong>  Renders the text in bold by default.
Generally preferable to the <b> tag since it is interpretable by screen readers.
<em>   For emphasis. Renders the text in italics by default.
Generally preferable to the <i> tag since it is interpretable by screen readers.
<blockquote>   Indents the text. To indent further, nest <blockquote> elements inside each other.

Return to Top