Skip to content

Instantly share code, notes, and snippets.

@SteveBarnett
Created November 13, 2014 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveBarnett/8437eca78fb8254f2c9e to your computer and use it in GitHub Desktop.
Save SteveBarnett/8437eca78fb8254f2c9e to your computer and use it in GitHub Desktop.
Basic HTML
<html>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h4>
<h6>Heading 6</h6>
<ul>
<li>Unordered list item</li>
<li>Unordered list item</li>
</ul>
<ol>
<li>Ordered list item</li>
<li>Ordered list item</li>
</lo>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment