Last active
April 20, 2017 08:14
-
-
Save alexander-schranz/b126c8750cca566f57567c461105215f to your computer and use it in GitHub Desktop.
Basic.html
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
| <!doctype html> | |
| <html lang="de"> | |
| <head> | |
| <link rel="stylesheet" href="your.css" /> | |
| </head> | |
| <body> | |
| <h1>H1 <br/>Headline</h1> | |
| <p> | |
| Normal Text<br/> | |
| With Break. | |
| </p> | |
| <ul> | |
| <li>Unordered</li> | |
| <li>List</li> | |
| </ul> | |
| <ol> | |
| <li>Ordered</li> | |
| <li>List</li> | |
| </ol> | |
| <p> | |
| A paragraph line. | |
| </p> | |
| <p> | |
| A other paragraph line. <br/> | |
| <strong>Strong</strong> <b>B</b> <br/> | |
| <em>Em</em> <i>I</i> <br/> | |
| <s>Strike</s> <br/> | |
| <u>U</u> <br/> | |
| Normal <sup>Sup</sup> <sub>Sub</sub> <br/> | |
| A <a href="#">Link</a> <br/> | |
| <ins>Ins</ins> <del>del</del> | |
| </p> | |
| <h2>H2 <br/>Headline</h2> | |
| <p> | |
| Test | |
| </p> | |
| <h3>H3 <br/>Headline</h3> | |
| <p> | |
| Test | |
| </p> | |
| <img src="http://placehold.it/1200x500" alt="1200x500" /> | |
| <h4>H4 <br/>Headline</h4> | |
| <p> | |
| Test | |
| </p> | |
| <img src="http://placehold.it/25x25" alt="25x25" /> | |
| <ul> | |
| <li>Unordered List</li> | |
| <li>Nested | |
| <ul> | |
| <li>Unordered</li> | |
| <li>List</li> | |
| </ul> | |
| </li> | |
| <li>Item</li> | |
| </ul> | |
| <ol> | |
| <li>Ordered List</li> | |
| <li>Nested | |
| <ol> | |
| <li>Ordered</li> | |
| <li>List</li> | |
| </ol> | |
| </li> | |
| <li>Item</li> | |
| </ol> | |
| <pre><?php | |
| // Hello World | |
| echo 'Hello World';</pre> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th> | |
| Head th 1 | |
| </th> | |
| <th> | |
| Head th 2 | |
| </th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td> | |
| Body td 1 | |
| </td> | |
| <td> | |
| Body td 2 | |
| </td> | |
| </tr> | |
| <tr> | |
| <td> | |
| Body td 1 | |
| </td> | |
| <td> | |
| Body td 2 | |
| </td> | |
| </tr> | |
| </tbody> | |
| <tfoot> | |
| <tr> | |
| <td> | |
| Foot td 1 | |
| </td> | |
| <td> | |
| Foot td 2 | |
| </td> | |
| </tr> | |
| </tfoot> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment