Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: html/content.html

Issue 29361647: Issue 4607 - Default content styles (Closed)
Patch Set: Removed extra list items and changed image text capitilization Created Nov. 17, 2016, 4:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(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;">
saroyanm 2016/11/21 18:44:35 Detail: let's not encourage people to use inline s
juliandoucette 2016/11/22 00:54:02 Do we really want to create a new <style> for *jus
saroyanm 2016/11/24 13:26:49 I see couple of reasons: * Overwriting inline-styl
saroyanm 2016/11/24 15:18:42 Acknowledged. We gonna use <style> tag
juliandoucette 2016/11/25 16:28:41 Done.
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
60 <ol>
61 <li>This is a list item</li>
62 <li>This is a list item</li>
63 </ol>
64 </li>
65 <li>This is a list item</li>
66 </ol>
67
68 <h3>Unordered lists</h3>
69
70 <ul>
71 <li>This is a list item</li>
72 <li>This is a list item
73 <ul>
74 <li>This is a list item</li>
75 <li>This is a list item</li>
76 </ul>
77 </li>
78 <li>This is a list item</li>
79 </ul>
80
81 <h3>Unstyled lists</h3>
82
83 <ul class="unstyled-list">
84 <li>This is a list item</li>
85 <li>This is a list item
86 <ul class="unstyled-list">
87 <li>This is a list item</li>
88 <li>This is a list item</li>
89 </ul>
90 </li>
91 <li>This is a list item</li>
92 </ul>
93
94 <h3>Definition lists</h3>
95
96 <dl>
97 <dt>This is a definition title</dt>
98 <dd>This is a definition detail</dd>
99 <dt>This is a definition title</dt>
100 <dd>This is a definition detail</dd>
101 </dl>
102
103 <h2>Images</h2>
104
105 <img src="//placehold.it/480x240?text=Fixed width" />
106 <img class="full-width" src="//placehold.it/960x240?text=Full width" />
107
108 </div>
109 </body>
110 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld