Skip to content

Instantly share code, notes, and snippets.

@cloudmanic
Created March 20, 2012 17:12
Show Gist options
  • Save cloudmanic/2138292 to your computer and use it in GitHub Desktop.
Save cloudmanic/2138292 to your computer and use it in GitHub Desktop.
Amy Html Help
* Intro
<blah> <------ That is called a tag.
All html elements have an opening and closing tag. Notice the forward slash on the closing tag.
<opening>Blah blah blah</closing>
* Paragraph
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit</p>
* Unordered List
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
<li>Item #4</li>
<li>Item #5</li>
<li>Item #6</li>
</ul>
* Bold
<strong>Woot!</strong>
* Headline
<h1>Blah #1</h1>
<h2>Blah #1</h2>
<h3>Blah #1</h3>
<h4>Blah #1</h4>
<h5>Blah #1</h5>
<h6>Blah #1</h6>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment