OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 This file is part of website-defaults |
| 4 Copyright (C) 2016 Eyeo GmbH |
| 5 |
| 6 website-defaults is free software: you can redistribute it and/or |
| 7 modify it under the terms of the GNU General Public License as published by |
| 8 the Free Software Foundation, either version 3 of the License, or |
| 9 (at your option) any later version. |
| 10 |
| 11 website-defaults is distributed in the hope that it will be useful, |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 GNU General Public License for more details. |
| 15 |
| 16 You should have received a copy of the GNU General Public License |
| 17 along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| 18 --> |
| 19 <html dir="ltr"> |
| 20 <head> |
| 21 <meta charset="utf-8"> |
| 22 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-
fit=no"> |
| 23 <meta http-equiv="x-ua-compatible" content="ie=edge"> |
| 24 <title>Content</title> |
| 25 <link rel="stylesheet" href="css/main.css"> |
| 26 <link rel="stylesheet" href="css/demo.css"> |
| 27 </head> |
| 28 <body> |
| 29 <div class="container"> |
| 30 |
| 31 <h1>Content</h1> |
| 32 <p>Default styles for a subset of HTML5 elements that are supported by Markd
own and recommended for website content and styleguide coverage.</p> |
| 33 |
| 34 <h2>Requirements</h2> |
| 35 <ul> |
| 36 <li><a href="#headings">Headings</a></li> |
| 37 <li><a href="#body-content">Body content</a></li> |
| 38 <li><a href="#lists">Lists</a></li> |
| 39 <li><a href="#images">Images</a></li> |
| 40 <li><a id="dir" onclick="changeDirection()">Right-to-left</a></li> |
| 41 <li><a href="http://browserl.ist/?q=last+2+versions%2C+Safari+6%2C+IE+8">L
ast 2 versions, Safari 6, IE 8</a></li> |
| 42 </ul> |
| 43 |
| 44 <h3 id="headings">Headings</h3> |
| 45 <h1>Heading 1</h1> |
| 46 <h2>Heading 2</h2> |
| 47 <h3>Heading 3</h3> |
| 48 <h4>Heading 4</h4> |
| 49 <h5>Heading 5</h5> |
| 50 <h6>Heading 6</h6> |
| 51 |
| 52 <h3 id="body-content">Body content</h3> |
| 53 <p>This is a normal.</p> |
| 54 <p>This is <em>emphasized</em>.</p> |
| 55 <p>This is <strong>strong</strong>.</p> |
| 56 <p>This is an <abbr title="Abbreviation">abbr</abbr>.</p> |
| 57 <p>This is a <a href="#">link</a>.</p> |
| 58 <p>This has a footnote. <sup><a href="#" class="footnote-ref">1</a></sup></p
> |
| 59 <blockquote>This is a blockquote.</blockquote> |
| 60 |
| 61 <h3 id="lists">Lists</h3> |
| 62 |
| 63 <h4>Ordered lists</h4> |
| 64 <ol> |
| 65 <li>This is a list item</li> |
| 66 <li>This is a list item |
| 67 <ol> |
| 68 <li>This is a list item</li> |
| 69 <li>This is a list item</li> |
| 70 </ol> |
| 71 </li> |
| 72 <li>This is a list item</li> |
| 73 </ol> |
| 74 |
| 75 <h4>Unordered lists</h4> |
| 76 <ul> |
| 77 <li>This is a list item</li> |
| 78 <li>This is a list item |
| 79 <ul> |
| 80 <li>This is a list item</li> |
| 81 <li>This is a list item</li> |
| 82 </ul> |
| 83 </li> |
| 84 <li>This is a list item</li> |
| 85 </ul> |
| 86 |
| 87 <h4>Description lists</h4> |
| 88 <dl> |
| 89 <dt>This is a description title</dt> |
| 90 <dd>This is a description detail</dd> |
| 91 <dt>This is a description title</dt> |
| 92 <dd>This is a description detail</dd> |
| 93 </dl> |
| 94 |
| 95 <h3 id="images">Images</h3> |
| 96 <p> |
| 97 <img src="//placehold.it/480x240?text=Fixed width" /> |
| 98 </p> |
| 99 <p> |
| 100 <img class="full-width" src="//placehold.it/960x240?text=Full width" /> |
| 101 </p> |
| 102 |
| 103 </div> |
| 104 <script src="js/demo.js"></script> |
| 105 </body> |
| 106 </html> |
OLD | NEW |