OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <!-- | |
3 This file is part of website-defaults | |
4 Copyright (C) 2016-2017 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 <ol> | |
35 <li><a href="#headings">Headings</a></li> | |
36 <li><a href="#body-content">Body content</a></li> | |
37 <li><a href="#lists">Lists</a></li> | |
38 <li><a href="#images">Images</a></li> | |
39 </ol> | |
40 | |
41 <h2 id="headings">Headings</h3> | |
42 <h1>Heading 1</h1> | |
43 <h2>Heading 2</h2> | |
44 <h3>Heading 3</h3> | |
45 <h4>Heading 4</h4> | |
46 <h5>Heading 5</h5> | |
47 <h6>Heading 6</h6> | |
48 | |
49 <h2 id="body-content">Body content</h3> | |
50 <p>This is a normal.</p> | |
51 <p>This is <em>emphasized</em>.</p> | |
52 <p>This is <strong>strong</strong>.</p> | |
53 <p>This is an <abbr title="Abbreviation">abbr</abbr>.</p> | |
54 <p>This is a <a href="#">link</a>.</p> | |
55 <p>This has a footnote. <sup><a href="#" class="footnote-ref">1</a></sup></p
> | |
56 <blockquote>This is a blockquote.</blockquote> | |
57 | |
58 <h2 id="lists">Lists</h3> | |
59 | |
60 <h3>Ordered lists</h4> | |
61 <ol> | |
62 <li>This is a list item</li> | |
63 <li>This is a list item | |
64 <ol> | |
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</h4> | |
73 <ul> | |
74 <li>This is a list item</li> | |
75 <li>This is a list item | |
76 <ul> | |
77 <li>This is a list item</li> | |
78 <li>This is a list item</li> | |
79 </ul> | |
80 </li> | |
81 <li>This is a list item</li> | |
82 </ul> | |
83 | |
84 <h3>Description lists</h4> | |
85 <dl> | |
86 <dt>This is a description title</dt> | |
87 <dd>This is a description detail.</dd> | |
88 <dt>This is a description title</dt> | |
89 <dd>This is a description detail.</dd> | |
90 </dl> | |
91 | |
92 <h2 id="images">Images</h3> | |
93 <p> | |
94 <img src="//placehold.it/480x240?text=Fixed width" /> | |
95 </p> | |
96 <p> | |
97 <img class="full-width" src="//placehold.it/960x240?text=Full width" /> | |
98 </p> | |
99 | |
100 </div> | |
101 </body> | |
102 </html> | |
OLD | NEW |