Left: | ||
Right: |
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> | |
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 inline <code>code</code>.</p> | |
48 <p>This is an <abbr title="Abbreviation">abbr</abbr>.</p> | |
49 <p>This is a <a href="#">link</a>.</p> | |
50 <p>This has a footnote. <sup><a href="#" class="footnote-ref">1</a></sup></p > | |
51 <blockquote>This is a blockquote.</blockquote> | |
52 <p>This is followed by a thematic break.</p> | |
53 <hr> | |
54 <p>Like a change of scene in a story, or a shift of topic within a section.< /p> | |
55 | |
56 <h3>Ordered lists</h3> | |
57 | |
58 <ol> | |
59 <li>This is a list item.</li> | |
60 <li>This is a list item.</li> | |
61 <li>This is a list item. | |
62 <ol> | |
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 <li>This is a list item.</li> | |
67 </ol> | |
68 </li> | |
69 <li>This is a list item.</li> | |
70 </ol> | |
71 | |
72 <h3>Unordered lists</h3> | |
73 | |
74 <ul> | |
75 <li>This is a list item.</li> | |
76 <li>This is a list item.</li> | |
77 <li>This is a list item. | |
78 <ul> | |
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 <li>This is a list item.</li> | |
83 </ul> | |
84 </li> | |
85 <li>This is a list item.</li> | |
86 </ul> | |
87 | |
88 <h3>Unstyled lists</h3> | |
89 | |
90 <ul class="unstyled-list"> | |
91 <li>This is a list item.</li> | |
92 <li>This is a list item.</li> | |
93 <li>This is a list item. | |
94 <ul class="unstyled-list"> | |
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 <li>This is a list item.</li> | |
99 </ul> | |
100 </li> | |
101 <li>This is a list item.</li> | |
102 </ul> | |
103 | |
104 <h3>Definition lists</h3> | |
105 | |
106 <dl> | |
107 <dt>This is a definition title.</dt> | |
108 <dd>This is a definition detail.</dd> | |
109 <dt>This is a definition title.</dt> | |
110 <dd>This is a definition detail.</dd> | |
111 </dl> | |
112 | |
113 <h3>Code blocks</h3> | |
juliandoucette
2016/11/17 16:09:32
Note: I removed code and pre > code from content b
| |
114 | |
115 <pre style="height: 100px;"><code> | |
116 Lorem ipsum dolor sit amet, consectetur | |
117 adipiscing elit, sed do eiusmod tempor | |
118 incididunt ut labore et dolore magna | |
119 aliqua. Ut enim ad minim veniam, quis | |
120 nostrud exercitation ullamco laboris | |
121 nisi ut aliquip ex ea commodo consequat. | |
122 Duis aute irure dolor in reprehenderit | |
123 in voluptate velit esse cillum dolore eu | |
124 fugiat nulla pariatur. Excepteur sint | |
125 occaecat cupidatat non proident, sunt in | |
126 culpa qui officia deserunt mollit anim | |
127 id est laborum. | |
128 </code></pre> | |
129 <pre><code> | |
130 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor i ncididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostru d exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aut e irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat n ulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | |
131 </code></pre> | |
132 | |
133 <h3>Embedded video</h3> | |
juliandoucette
2016/11/17 16:09:33
Note: I removed embedded video because we don't ha
| |
134 | |
135 <div class="embed"> | |
136 <iframe src="//www.youtube.com/embed/zpOULjyy-n8?rel=0" allowfullscreen></ iframe> | |
137 </div> | |
138 | |
139 <h2>Image alignment</h2> | |
juliandoucette
2016/11/17 16:09:33
Note: I removed floating images because they compl
| |
140 | |
141 <p> | |
142 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod te mpor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. | |
143 | |
144 <img class="full-width" src="//placehold.it/992x140?text=Block"> | |
145 | |
146 Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolo re eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sun t in culpa qui officia deserunt mollit anim id est laborum. | |
147 </p> | |
148 | |
149 <img class="float-start" src="//placehold.it/120x120?text=Start"> | |
150 <p> | |
151 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod te mpor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Du is aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fu giat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in cul pa qui officia deserunt mollit anim id est laborum. | |
152 </p> | |
153 <img class="float-end" src="//placehold.it/120x120?text=End"> | |
154 <p> | |
155 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod te mpor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Dui s aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fug iat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culp a qui officia deserunt mollit anim id est laborum. | |
156 </p> | |
157 <p> | |
158 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod te mpor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Du is aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fu giat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in cul pa qui officia deserunt mollit anim id est laborum. | |
159 </p> | |
160 | |
161 </div> | |
162 </body> | |
163 </html> | |
OLD | NEW |