You can find a full list of all HTML elements at the Mozilla Developer Network HTML Element Reference Page.
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Headline</h1> <p>This is a Paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Headline</h1> <p>This is a Paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Headline</h1> <p>This is a Paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Headline</h1> <p>This is a Paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Headline</h1> <p>This is a Paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Headline</h1> <p>This is a Paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Page Title</title> <body> </head> <h1><p>This is a Headline</h1> This is a Paragraph.</p> </body> </html>
<p>This is a Paragraph. I'm made
out of words that are organized
by grammar rules.</p>
<p>I was always terrible at
understanding English language
syntax and grammar when I tried
to learn it in school. I was
afraid to learn to code because
of this, but I did it anyway.</p>
This is a Paragraph. I'm made out of words that are organized by grammar rules.
I was always terrible at understanding English language syntax and grammar when I tried to learn it in school. I was afraid to learn to code because of this, but I did it anyway.
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
Header element numbers indicate hierarchy, not size, with h1 the most important and h6 the least important.
<ul> <li>unordered list</li> <li>unordered list</li> <li>unordered list</li> </ul>
<ol> <li>ordered list</li> <li>ordered list</li> <li>ordered list</li> </ol>
<ol> <li>first level</li> <ol> <li>second level</li> <li>second level</li> </ol> <li>first level</li> <li>first level</li> </ol>
<div class="footer"> <div class="footer-left">footer content</div> <div class="footer-right">footer content</div> </div>