OLD | NEW |
(Empty) | |
| 1 title=Content |
| 2 |
| 3 <h1>Content</h1> |
| 4 <p>Default styles for a subset of HTML5 elements that are supported by Markdown
and recommended for website content and styleguide coverage.</p> |
| 5 |
| 6 <ol> |
| 7 <li><a href="#headings">Headings</a></li> |
| 8 <li><a href="#body-content">Body content</a></li> |
| 9 <li><a href="#lists">Lists</a></li> |
| 10 <li><a href="#images">Images</a></li> |
| 11 </ol> |
| 12 |
| 13 <h2 id="headings">Headings</h2> |
| 14 <h1>Heading 1</h1> |
| 15 <h2>Heading 2</h2> |
| 16 <h3>Heading 3</h3> |
| 17 <h4>Heading 4</h4> |
| 18 <h5>Heading 5</h5> |
| 19 <h6>Heading 6</h6> |
| 20 |
| 21 <h2 id="body-content">Body content</h2> |
| 22 <p>This is a normal.</p> |
| 23 <p>This is <em>emphasized</em>.</p> |
| 24 <p>This is <strong>strong</strong>.</p> |
| 25 <p>This is an <abbr title="Abbreviation">abbr</abbr>.</p> |
| 26 <p>This is a <a href="#">link</a>.</p> |
| 27 <p>This has a footnote. <sup><a href="#" class="footnote-ref">1</a></sup></p> |
| 28 <blockquote>This is a blockquote.</blockquote> |
| 29 |
| 30 <h2 id="lists">Lists</h2> |
| 31 |
| 32 <h3>Ordered lists</h3> |
| 33 <ol> |
| 34 <li>This is a list item</li> |
| 35 <li>This is a list item |
| 36 <ol> |
| 37 <li>This is a list item</li> |
| 38 <li>This is a list item</li> |
| 39 </ol> |
| 40 </li> |
| 41 <li>This is a list item</li> |
| 42 </ol> |
| 43 |
| 44 <h3>Unordered lists</h3> |
| 45 <ul> |
| 46 <li>This is a list item</li> |
| 47 <li>This is a list item |
| 48 <ul> |
| 49 <li>This is a list item</li> |
| 50 <li>This is a list item</li> |
| 51 </ul> |
| 52 </li> |
| 53 <li>This is a list item</li> |
| 54 </ul> |
| 55 |
| 56 <h3>Description lists</h3> |
| 57 <dl> |
| 58 <dt>This is a description title</dt> |
| 59 <dd>This is a description detail.</dd> |
| 60 <dt>This is a description title</dt> |
| 61 <dd>This is a description detail.</dd> |
| 62 </dl> |
| 63 |
| 64 <h2 id="images">Images</h2> |
| 65 <p> |
| 66 <img src="//placehold.it/480x240?text=Fixed width" /> |
| 67 </p> |
| 68 <p> |
| 69 <img class="full-width" src="//placehold.it/960x240?text=Full width" /> |
| 70 </p> |
| 71 |
OLD | NEW |