HTML Home

HTML Part 1 Glossary

Paragraph

<p>Paragraph text goes here</p>

Headings (h1-h6)

<h1>This is a top level heading</h1>
<h2>This is a heading level 2</h2>
<h3>This is a heading level 3</h3>
<h4>This is a heading level 4</h4>
<h5>This is a heading level 5</h5>
<h6>This is a heading level 6</h6>

List Item

<li>Corn</li>>

Unordered List

<ul>
<li>Corn</li>
<li>Tomatoes</li>
<li>Beans</li>
<li>Onions</li>
<li>Garlic</li>
</ul>

Ordered List

<ol>
<li>Add corn</li>
<li>Dice and add tomatoes</li>
<li>Add beans</li>
<li>Chop and sautee onions</li>
<li>Mince and add garlic</li>
</ol>

Text Formatting (emphasis and strong)

<em>Very Important</em>
<strong>Important</strong>

Commenting Code

<!-- This comment is hidden from the browser -->

Next: HTML Part 2
Previous:Activity page