Created
March 22, 2014 04:54
-
-
Save kexline4710/9701487 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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