Skip to content

Instantly share code, notes, and snippets.

@kexline4710
Created March 22, 2014 04:54
Show Gist options
  • Select an option

  • Save kexline4710/9701487 to your computer and use it in GitHub Desktop.

Select an option

Save kexline4710/9701487 to your computer and use it in GitHub Desktop.
<!-- paragraphs -->
<p> This is a sample paragraph.</p>
<!-- headings -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<!-- formatted text -->
<p>
Here is a paragraph with <em>Emphasized</em> text and <strong>Important</strong> text.
</p>
<!-- links -->
<a href="http://www.girldevelopit.com" title="Girl Develop It Homepage">GDI</a>
<a href="mailto:[email protected]">E-mail us!</a>
<!-- images -->
<img src ="http://girldevelopit.com/assets/pink-logo.png" alt = "Girl Develop It Logo"/>
<!-- unordered list (bullets) -->
<ul>
<li>List Item</li>
<li>AnotherList Item</li>
</ul>
<!-- ordered list (numbers) -->
<ol>
<li>List Item</li>
<li>AnotherList Item</li>
</ol>
<!-- tables -->
<table>
<tr>
<th>Head</th>
<th>Head</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment