OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 This file is part of universal-design-language |
| 4 Copyright (C) 2016 Eyeo GmbH |
| 5 |
| 6 universal-design-language 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 universal-design-language 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 web.starter-kit. 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 </head> |
| 27 <body style="margin-bottom: 3em;"> |
| 28 <div class="container"> |
| 29 |
| 30 <h1>Content</h1> |
| 31 <p>This document outlines a subset of HTML5 that we recommend supporting acc
ross all websites.</p> |
| 32 |
| 33 <h2>Headings</h2> |
| 34 |
| 35 <h1>Heading 1</h1> |
| 36 <h2>Heading 2</h2> |
| 37 <h3>Heading 3</h3> |
| 38 <h4>Heading 4</h4> |
| 39 <h5>Heading 5</h5> |
| 40 <h6>Heading 6</h6> |
| 41 |
| 42 <h2>Body content</h2> |
| 43 |
| 44 <p>This is a normal.</p> |
| 45 <p>This is <em>emphasized</em>.</p> |
| 46 <p>This is <strong>strong</strong>.</p> |
| 47 <p>This is an <abbr title="Abbreviation">abbr</abbr>.</p> |
| 48 <p>This is a <a href="#">link</a>.</p> |
| 49 <p>This has a footnote. <sup><a href="#" class="footnote-ref">1</a></sup></p
> |
| 50 <blockquote>This is a blockquote.</blockquote> |
| 51 <p>This is followed by a thematic break.</p> |
| 52 <hr> |
| 53 <p>Like a change of scene in a story, or a shift of topic within a section.<
/p> |
| 54 |
| 55 <h3>Ordered lists</h3> |
| 56 |
| 57 <ol> |
| 58 <li>This is a list item</li> |
| 59 <li>This is a list item</li> |
| 60 <li>This is a list item |
| 61 <ol> |
| 62 <li>This is a list item</li> |
| 63 <li>This is a list item</li> |
| 64 <li>This is a list item</li> |
| 65 <li>This is a list item</li> |
| 66 </ol> |
| 67 </li> |
| 68 <li>This is a list item</li> |
| 69 </ol> |
| 70 |
| 71 <h3>Unordered lists</h3> |
| 72 |
| 73 <ul> |
| 74 <li>This is a list item</li> |
| 75 <li>This is a list item</li> |
| 76 <li>This is a list item |
| 77 <ul> |
| 78 <li>This is a list item</li> |
| 79 <li>This is a list item</li> |
| 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 <h3>Unstyled lists</h3> |
| 88 |
| 89 <ul class="unstyled-list"> |
| 90 <li>This is a list item</li> |
| 91 <li>This is a list item</li> |
| 92 <li>This is a list item |
| 93 <ul class="unstyled-list"> |
| 94 <li>This is a list item</li> |
| 95 <li>This is a list item</li> |
| 96 <li>This is a list item</li> |
| 97 <li>This is a list item</li> |
| 98 </ul> |
| 99 </li> |
| 100 <li>This is a list item</li> |
| 101 </ul> |
| 102 |
| 103 <h3>Definition lists</h3> |
| 104 |
| 105 <dl> |
| 106 <dt>This is a definition title</dt> |
| 107 <dd>This is a definition detail</dd> |
| 108 <dt>This is a definition title</dt> |
| 109 <dd>This is a definition detail</dd> |
| 110 </dl> |
| 111 |
| 112 <h2>Images</h2> |
| 113 |
| 114 <img src="//placehold.it/480x240?text=Fixed Width" /> |
| 115 <img class="full-width" src="//placehold.it/960x240?text=Full Width" /> |
| 116 |
| 117 </div> |
| 118 </body> |
| 119 </html> |
OLD | NEW |