-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
191 lines (188 loc) · 3.78 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Cyanotype CSS tests</title>
<link rel="stylesheet" href="cyanotype.css">
<style>
body {
color: #282828;
padding: 1rem;
}
a[href] {
color: dodgerblue;
}
#top {
margin: 0 auto;
max-width: 960px;
width: 80%;
}
.example {
background: #F8F8F8;
border: 1px solid #D0D0D0;
margin-bottom: 1rem;
padding: 1rem 1.4rem;
}
</style>
</head>
<body>
<section id="top">
<h1><a href="https://github.com/skooler/cyanotype.css">Cyanotype CSS</a> tests</h1>
<section>
<h2>Block element</h2>
<div class="example">
<article>article</article>
<aside>aside</aside>
<details>
<summary>summary</summary>
details
</details>
<figure>
figure
<figcaption>figcaption</figcaption>
</figure>
<footer>footer</footer>
<header>header</header>
<main>main</main>
<nav>nav</nav>
<section>section</section>
</div>
</section>
<section>
<h2>Typography</h2>
<div class="example">
<h1>H1 heading</h1>
<h2>H2 heading</h2>
<h3>H3 heading</h3>
<h4>H4 heading</h4>
<h5>H5 heading</h5>
<h6>H6 heading</h6>
<p>Paragraph</p>
<blockquote>Blockquote</blockquote>
<pre>Pre-formatted text</pre>
<address>Address</address>
</div>
</section>
<section>
<h2>Text-level semantics</h2>
<div class="example">
<p>
<a>Anchor</a>
<em>Emphasis</em>
<strong>Strong</strong>
<b>Bold</b>
<i>Italic</i>
<u>Underline</u>
<s>Strikethrough</s>
<small>Small</small>
<sub>Sub</sub>
<sup>Super</sup>
<abbr title="Abbreviation">Abbr</abbr>
<q>Quoted</q>
<cite>Cite</cite>
<code>Code</code>
<kbd>Keyboard</kbd>
<samp>Sample</samp>
<dfn>Definition</dfn>
<mark>Highlighted</mark>
<var>Variable</var>
<del>Deleted</del>
<ins>Inserted</ins>
<time datetime="2019-03-05T16:20+00:00">2019-03-05 16:20</time>
</p>
</div>
</section>
<section>
<h2>Horizontal rules</h2>
<div class="example">
<hr>
</div>
</section>
<section>
<h2>Lists</h2>
<div class="example">
<ul>
<li>Unordered list item 1</li>
<li>Unordered list item 2</li>
</ul>
<ol>
<li>Ordered list item 1</li>
<li>Ordered list item 2</li>
</ol>
<dl>
<dt>Description list item 1</dt>
<dd>Description list item 1.1</dd>
</dl>
</div>
</section>
<section>
<h2>Tables</h2>
<div class="example">
<table>
<caption>Caption</caption>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Footer 1</td>
<td>Footer 2</td>
<td>Footer 3</td>
</tr>
</tfoot>
</table>
</div>
</section>
<section>
<h2>Forms</h2>
<div class="example">
<form>
<fieldset>
<p>
<label for="nameField">Name</label>
<input type="text" placeholder="John Smith" id="nameField">
</p>
<p>
<label for="ageRangeField">Age range</label>
<select id="ageRangeField">
<option value="0-19">0-19</option>
<option value="20-29">20-29</option>
<option value="30-39">30-39</option>
<option value="40+">40+</option>
</select>
</p>
<p>
<label for="commentField">Comment</label>
<textarea placeholder="Hi CJ …" id="commentField"></textarea>
</p>
<p>
<input type="checkbox" id="confirmField">
<label for="confirmField">Send a copy to yourself</label>
</p>
<p>
<button type="submit">Submit</button>
</p>
</fieldset>
</form>
</div>
</section>
<nav>
<ul>
<li><a href="#top">Return to top</a></li>
</ul>
</nav>
</section>
</body>
</html>