-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.html
443 lines (366 loc) · 18.3 KB
/
index.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<h1>Poor Man's Styleguide</h1>
<p>A quick-and-dirty frontend styleguide, designed to be copied and pasted into your CMS.</p>
<strong><a href="https://bryanbraun.com/poor-mans-styleguide">See the full demo at bryanbraun.com/poor-mans-styleguide</a></strong>
<hr />
<h1 id="headings">Headings</h1>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<hr />
<h1 id="headings-with-text">Headings with Text</h1>
<h1>Heading 1</h1>
<p>Lorem ipsum dolor sit amet, adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p>
<h2>Heading 2</h2>
<p>Lorem ipsum dolor sit amet, adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p>
<h3>Heading 3</h3>
<p>Lorem ipsum dolor sit amet, adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p>
<h4>Heading 4</h4>
<p>Lorem ipsum dolor sit amet, adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p>
<h5>Heading 5</h5>
<p>Lorem ipsum dolor sit amet, adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p>
<h6>Heading 6</h6>
<p>Lorem ipsum dolor sit amet, adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p>
<hr />
<h1 id="text-block">Block Elements</h1>
<h2 id="paragraph">Paragraphs and Images</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor.</p>
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAACHCAAAAAANGYs3AAADvElEQVR4Ae3ZhVbj7BrF8XPVuyl2iru7u4z74FRwKxGa7Mv5Vt6URTNaZkmQ/cf1ya8S/R9fWAILLLDAAgsssMACCyywwAILLPATTWCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggd8g3jUfUhNmHjlY4GLBVIfxgqnE33e0cfuUwbHqsci/tQk4zwEssJPdOSqxXDG7mb8KqgL7R/suw+ydXJF3BTfHlwErcvLHRZ/xaUmCd5oAoGEjMEszjrDMGjmOcue/AI/g2h5OA6k+m5utALBoTM67DgtAesRm1NVoPQBY/Z9/npYMeBFIt3emgbUIAqurNY2Rv4JXmtHUZQHjX1Pp9o408JYk+0NNJgU0Gz+/1AKWMXb9PC0RcBZYdEl3DKljsgjM+GSwnyOd4ifgrFgsBr8Eo+6A9HoAdF6R161oNs+CmX2P9NeAryR5bqEp69Mr9BtwfFoy4B4Mm49uHd6bBTqqYqVlwO/LAuRJ8iNgx35vMfq1+ug/zBpwfFoi4Atgj6YhzJkvP1YJbjN3fAnoZ9gxcMb7hjBJ8hrYYAU4Pi0R8B5QODeNod+ArFWnKvAQTbVYNx8vgRzvG8RUdP8fV4Lj0xIBf8R9IyQLdYA1cVo9+P9l8PXdneduvlmZm8uY3/sM2JXg+LREwOtA/11vzGN82gIwF1QLzsTBN0MWoubNf7dYCY5NS+we9hjv5m0GWPg38HUzrKnPe/lcG5ZIvgO8SnBsWmLP4TP+mDeIGv+fwG+QOmJYL1ajf3BRATbTEgafA+/4U1mgEC2v/TDwEHpp6jbfzgMfaeo3YDMtWTB7kbnljx1Fa9d94Pxh4EHUeQylKfPtUgM6fYbSlAGbaQmD94DWI5LemxWSx8uh8HoEtSWSp8ByQKdYPXgNmDnn7YdaYJkkV4Exm7dbbTDg2LSEwFwCUNvVDFg2uQjUdjaj/Ej0M0BTu7VUPdhpBNAAtH3CtFkBtgBoTcNqNeDYtKTA3GoCgNTICcnNHoRlvtK0mQZQt149mJfDAOoWPdeKgN54GkAmu2jAsWkJnrV0c7vnpbvPT/Z2L3yWs/d3Tnw+KO/40g8/eIzyT/auyRl0xaY9+9O0Qxh7Ueel7Vqsvgxw/tQ8wYeAwssA96Cuo6fJAhb5IsDBoIWwzOfgRYDNWv9gK3sV6GKawAILLPDzSWCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFvg/grmeGCDEU1MAAAAASUVORK5CYII=" alt="Test Image" /></p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem.</p>
<h2 id="blockquote">Blockquote</h2>
<p>This is a standard paragraph. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
<blockquote>
"<strong>This is a blockquote.</strong> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl."
</blockquote>
<p>This is a standard paragraph. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
<h2 id="figure-caption">Figure-Caption</h2>
<figure>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAACHCAAAAAANGYs3AAADvElEQVR4Ae3ZhVbj7BrF8XPVuyl2iru7u4z74FRwKxGa7Mv5Vt6URTNaZkmQ/cf1ya8S/R9fWAILLLDAAgsssMACCyywwAILLPATTWCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggd8g3jUfUhNmHjlY4GLBVIfxgqnE33e0cfuUwbHqsci/tQk4zwEssJPdOSqxXDG7mb8KqgL7R/suw+ydXJF3BTfHlwErcvLHRZ/xaUmCd5oAoGEjMEszjrDMGjmOcue/AI/g2h5OA6k+m5utALBoTM67DgtAesRm1NVoPQBY/Z9/npYMeBFIt3emgbUIAqurNY2Rv4JXmtHUZQHjX1Pp9o408JYk+0NNJgU0Gz+/1AKWMXb9PC0RcBZYdEl3DKljsgjM+GSwnyOd4ifgrFgsBr8Eo+6A9HoAdF6R161oNs+CmX2P9NeAryR5bqEp69Mr9BtwfFoy4B4Mm49uHd6bBTqqYqVlwO/LAuRJ8iNgx35vMfq1+ug/zBpwfFoi4Atgj6YhzJkvP1YJbjN3fAnoZ9gxcMb7hjBJ8hrYYAU4Pi0R8B5QODeNod+ArFWnKvAQTbVYNx8vgRzvG8RUdP8fV4Lj0xIBf8R9IyQLdYA1cVo9+P9l8PXdneduvlmZm8uY3/sM2JXg+LREwOtA/11vzGN82gIwF1QLzsTBN0MWoubNf7dYCY5NS+we9hjv5m0GWPg38HUzrKnPe/lcG5ZIvgO8SnBsWmLP4TP+mDeIGv+fwG+QOmJYL1ajf3BRATbTEgafA+/4U1mgEC2v/TDwEHpp6jbfzgMfaeo3YDMtWTB7kbnljx1Fa9d94Pxh4EHUeQylKfPtUgM6fYbSlAGbaQmD94DWI5LemxWSx8uh8HoEtSWSp8ByQKdYPXgNmDnn7YdaYJkkV4Exm7dbbTDg2LSEwFwCUNvVDFg2uQjUdjaj/Ej0M0BTu7VUPdhpBNAAtH3CtFkBtgBoTcNqNeDYtKTA3GoCgNTICcnNHoRlvtK0mQZQt149mJfDAOoWPdeKgN54GkAmu2jAsWkJnrV0c7vnpbvPT/Z2L3yWs/d3Tnw+KO/40g8/eIzyT/auyRl0xaY9+9O0Qxh7Ueel7Vqsvgxw/tQ8wYeAwssA96Cuo6fJAhb5IsDBoIWwzOfgRYDNWv9gK3sV6GKawAILLPDzSWCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFlhggQUWWGCBBRZYYIEFFvg/grmeGCDEU1MAAAAASUVORK5CYII=" alt="Test Image" />
<figcaption>The figcaption element example</figcaption>
</figure>
<h2 id="details-summary">Details-Summary</h2>
<details>
<summary>The summary element example</summary>
<p>The details example text. It may be styled differently based on what browser or operating system you are using.</p>
</details>
<hr />
<h1 id="text-elements">Text Elements</h1>
<p>The <a href="#">a element</a>, <a href="https://example.com" target="_blank">external a element</a>, and <a href="#" title="Example Title">a element with title</a> examples</p>
<p>The <abbr>abbr element</abbr> and an <abbr title="Abbreviation">abbr</abbr> element with title examples</p>
<p>The <acronym title="A Cowboy Ran One New York Marathon">ACRONYM</acronym> element example</p>
<p>The <b>b element</b> example</p>
<p>The <cite>cite element</cite> example</p>
<p>The <code>code element</code> example</p>
<p>The <data value="3967381398">data element</data> example</p>
<p>The <del>del element</del> example</p>
<p>The <dfn>dfn element</dfn> and <dfn title="Title text">dfn element with title</dfn> examples</p>
<p>The <em>em element</em> example</p>
<p>The <i>i element</i> example</p>
<p>The <ins>ins element</ins> example</p>
<p>The <kbd>kbd element</kbd> example</p>
<p>The <mark>mark element</mark> example</p>
<p>The <q>q element</q> example</p>
<p>The <q>q element <q>inside</q> a q element</q> example</p>
<p>The <s>s element</s> example</p>
<p>The <samp>samp element</samp> example</p>
<p>The <small>small element</small> example</p>
<p>The <span>span element</span> example</p>
<p>The <strong>strong element</strong> example</p>
<p>The <sub>sub element</sub> example</p>
<p>The <sup>sup element</sup> example</p>
<p>The <time datetime="2005-05-15 19:00">time element</time> example</p>
<p>The <u>u element</u> example</p>
<p>The <var>var element</var> example</p>
<hr />
<h1 id="monospace">Monospace / Preformatted</h1>
<p>Code block wrapped in "pre" and "code" tags</p>
<pre><code>// Loop through Divs using Javascript.
var divs = document.querySelectorAll('div'), i;
for (i = 0; i < divs.length; ++i) {
divs[i].style.color = "green";
}</code></pre>
<p>Monospace Text wrapped in "pre" tags</p>
<pre><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl.</p></pre>
<hr />
<h1 id="list-types">List Types</h1>
<h2 id="ordered-list">Ordered List</h2>
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3
<ol>
<li>List Item 3.1</li>
<li>List Item 3.2
<ol>
<li>List Item 3.2.1</li>
<li>List Item 3.2.2</li>
</ol>
</li>
<li>List Item 3.3</li>
</ol>
</li>
<li>List Item 4</li>
</ol>
<h2 id="unordered-list">Unordered List</h2>
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3
<ul>
<li>List Item 3.1</li>
<li>List Item 3.2
<ul>
<li>List Item 3.2.1</li>
<li>List Item 3.2.2</li>
</ul>
</li>
<li>List Item 3.3</li>
</ul>
</li>
<li>List Item 4</li>
</ul>
<h2 id="definition-list">Definition List</h2>
<dl>
<dt>Definition Term 1</dt>
<dd>Definition Description 1</dd>
<dt>Definition Term 2</dt>
<dd>Definition Description 2</dd>
</dl>
<hr />
<h1 id="tables">Tables</h1>
<table cellspacing="0" cellpadding="0">
<caption>This is a table caption</caption>
<thead>
<tr>
<th>Table Header 1</th><th>Table Header 2</th><th>Table Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr class="even">
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr>
<td colspan="3">A row with a cell spanning all 3 columns</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Table Footer 1</th><th>Table Footer 2</th><th>Table Footer 3</th>
</tr>
</tfoot>
</table>
<hr />
<h1 id="media-elements">Media</h1>
<h2>The Audio Element:</h2>
<audio controls>
<source src="https://simpl.info/audio/audio/audio.mp3" type="audio/mp3" />
<source src="https://simpl.info/audio/audio/audio.ogg" type="audio/ogg" />
Your browser does not support the audio element.
</audio>
<h2>The Video Element:</h2>
<video width="320" height="240" controls>
<source src="https://www.html5rocks.com/en/tutorials/video/basics/devstories.webm" type='video/webm;codecs="vp8, vorbis"' />
<source src="https://www.html5rocks.com/en/tutorials/video/basics/devstories.mp4" type='video/mp4;codecs="avc1.42E01E, mp4a.40.2"' />
<track src="https://www.html5rocks.com/en/tutorials/video/basics/devstories-en.vtt" label="English subtitles" kind="subtitles" srclang="en" default />
Your browser does not support the video tag.
</video>
<h2>Embedded content:</h2>
<p>YouTube video (iframe):</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/QE5KOfjKLy0" frameborder="0" allowfullscreen></iframe>
<hr />
<h1 id="form-elements">Form Elements</h1>
<p>The Fieldset:</p>
<fieldset>
<legend>Legend</legend>
<p>The Form:</p>
<form>
<p><label for="text-field">Text Field:</label><br />
<input type="text" id="text-field" />
</p>
<p><label for="text-field-disabled">Disabled Text Field:</label><br />
<input type="text" id="text-field-disabled" disabled value="I'm disabled" />
</p>
<p><label for="text-field-readonly">Readonly Text Field:</label><br />
<input type="text" id="text-field-readonly" readonly value="I'm readonly" />
</p>
<p><label for="text-area">Text Area:</label><br />
<textarea id="text-area"></textarea>
</p>
<p><label for="text-area-disabled">Disabled Text Area:</label><br />
<textarea id="text-area-disabled" disabled>I'm disabled</textarea>
</p>
<p><label for="text-area-readonly">Readonly Text Area:</label><br />
<textarea id="text-area-readonly" readonly>I'm readonly</textarea>
</p>
<p><label for="select-element">Select Element:</label><br />
<select id="select-element">
<optgroup label="Option Group 1">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</optgroup>
<optgroup label="Option Group 2">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3" disabled>Disabled Option</option>
</optgroup>
</select>
</p>
<p><label for="select-element-disabled">Disabled Select Element:</label><br/>
<select id="select-element-disabled" disabled>
<option value="1">Unselectable Option</option>
<option value="2">This option should not even be seen</option>
</select>
</p>
<p><label for="select_multi">Select multiple</label><br/>
<select
id="select_multi"
multiple="multiple"
name="select_multi"
>
<optgroup label="Group 1">
<option value="1">Some text goes here </option>
<option value="2">Another choice could be here</option>
<option value="3">Yet another item to be chosen</option>
</optgroup>
<optgroup label="Group 2">
<option value="4">Some text goes here</option>
<option value="5">Another choice could be here</option>
<option value="6">Yet another item to be chosen</option>
</optgroup>
<optgroup label="Group 3">
<option value="7">Some text goes here</option>
<option value="8">Another choice could be here</option>
<option value="9">Yet another item to be chosen</option>
</optgroup>
</select>
</p>
<p><label for="select_size">Select multiple [size="2"]</label><br/>
<select
id="select_size"
name="select_size"
size="2"
>
<optgroup label="Group 1">
<option value="1">Some text goes here </option>
<option value="2">Another choice could be here</option>
<option value="3">Yet another item to be chosen</option>
</optgroup>
<optgroup label="Group 2">
<option value="4">Some text goes here</option>
<option value="5">Another choice could be here</option>
<option value="6">Yet another item to be chosen</option>
</optgroup>
</select>
</p>
<p>Radio Buttons:</p>
<div>
<input type="radio" id="radio-1" name="radios" value="1" checked />
<label for="radio-1">Radio 1</label>
</div>
<div>
<input type="radio" id="radio-2" name="radios" value="2" />
<label for="radio-2">Radio 2</label>
</div>
<div>
<input type="radio" id="radio-3" name="radios" value="3" />
<label for="radio-3">Radio 3</label>
</div>
<div>
<input type="radio" id="radio-4" name="radios" value="4" disabled />
<label for="radio-4">Radio Disabled</label>
</div>
<p>Checkboxes:</p>
<div>
<input type="checkbox" id="checkbox-1" name="checkboxes" value="1" checked />
<label for="checkbox-1">Checkbox 1</label>
</div>
<div>
<input type="checkbox" id="checkbox-2" name="checkboxes" value="2" />
<label for="checkbox-2">Checkbox 2</label>
</div>
<div>
<input type="checkbox" id="checkbox-3" name="checkboxes" value="3" />
<label for="checkbox-3">Checkbox 3</label>
</div>
<div>
<input type="checkbox" id="checkbox-4" name="checkboxes" value="4" disabled />
<label for="checkbox-4">Checkbox Disabled</label>
</div>
<div>
<input type="checkbox" id="some-checkbox" onclick="this.a=this.indeterminate=!this.a" >
<label for="some-checkbox"> Indeterminate Checkbox</label>
</div>
<div>
<input type="checkbox" id="cb1" onclick="if (cb1.readOnly) cb1.checked = cb1.readOnly=false; else if (!cb1.checked) cb1.readOnly=cb1.indeterminate = true;">
<label for="cb1">Indeterminate Checkbox (Rotating)</label>
</div>
<p><label for="password">Password:</label><br />
<input type="password" class="password" id="password" />
</p>
<p><label for="file">File Input:</label><br />
<input type="file" class="file" id="file" />
</p>
<h3>HTML5-specific Form Elements</h3>
<p><label for="email">Email:</label><br />
<input type="email" id="email" />
</p>
<p><label for="url">URL:</label><br />
<input type="url" id="url" />
</p>
<p><label for="tel">Telephone:</label><br />
<input type="tel" id="tel" />
</p>
<p><label for="number">Number:</label><br />
<input type="number" id="number" min="0" max="10" step="1" value="5" />
</p>
<p><label for="search">Search:</label><br />
<input type="search" id="search" />
</p>
<p><label for="date">Date:</label><br />
<input type="date" id="date" />
</p>
<p><label for="time">Time:</label><br />
<input type="time" id="time" />
</p>
<p><label for="color">Color:</label><br />
<input type="color" id="color" />
</p>
<p><label for="datalist">Datalist:</label><br />
<input list="browsers" name="browser" type="datalist" id="datalist" />
<datalist id="browsers">
<option value="Internet Explorer" />
<option value="Firefox" />
<option value="Chrome" />
<option value="Opera" />
<option value="Safari" />
</datalist>
</p>
<p><label for="range">Range:</label><br />
<input type="range" id="range" name="points" min="1" max="10" />
</p>
<p><label for="output">Output:</label><br />
<output name="result" id="output">42</output>
</p>
<p><label for="progress">Progress:</label><br />
<progress id="progress" value="65" max="100"></progress>
</p>
<p><label for="meter">Meter:</label><br />
<meter id="meter" min="200" max="500" value="350">350 degrees</meter>
</p>
<p>
<button class="button">Button Element</button>
<input type="button" value="Input button">
<input class="button" type="reset" value="Clear" />
<input class="button" type="submit" value="Submit" />
</p>
</form>
</fieldset>