-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (152 loc) · 3.81 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
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>CSS Test Page</title>
<link rel='stylesheet' type='text/css' href=''>
</head>
<body>
<!-- Headings -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h2>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<!-- Inline -->
<p>Body Text</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce at mauris sed eros condimentum adipiscing. Nullam convallis velit ut pulvinar commodo. Ut ullamcorper ac erat non eleifend. Quisque feugiat laoreet magna, at congue ligula euismod auctor. Ut eget felis sit amet leo venenatis dignissim ut vel magna. Sed posuere lectus sapien, sodales sodales urna pharetra eu. Integer et nibh viverra elit posuere convallis. Aenean rutrum et dui sit amet mattis. Phasellus faucibus suscipit malesuada. Phasellus mattis magna eu metus dignissim, vel mollis velit feugiat. Morbi vitae cursus est. Etiam nulla massa, scelerisque eu blandit eget, accumsan a nunc. Donec non laoreet enim. Morbi vel molestie metus, ac hendrerit quam.</p>
<q>Inline Quote</q>
<blockquote>Block Quote</blockquote>
<cite>Citation</cite>
<a>Anchor Text</a>
<a href=''>Link Text</a>
<b>Bold Text</b>
<strong>Strong Text</strong>
<i>Italic Text</i>
<em>Emphasized Text</em>
<s>Strikethrough Text</s>
<del>Deleted Text</del>
<mark>Highlighted Text</mark>
<noscript>Javascript Disabled Text</noscript>
<abbr>Abbreviation</abbr>
<sup>Super Text</sup>
<sub>Sub Text</sub>
<span>Span Text</span>
<time>Time</time>
<code>Code</code>
<pre>Pre</pre>
<hr />
<!-- Lists -->
<ul>
<li>Unordered List</li>
<li>One</li>
<li>Two</li>
<li>
<ul>
<li>Secondary List</li>
<li>Three</li>
</ul>
</li>
</ul>
<ol>
<li>Ordered List</li>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
<dl>
<dt>Description List</dt>
<dd>Description Text</dd>
<dt>One</dt>
<dd>One</dd>
<dt>Two</dt>
<dd>Two</dd>
</dl>
<!-- Table -->
<table>
<caption>Table</caption>
<thead>
<tr>
<th>Column One</th>
<th>Column Two</th>
<th>Column Three</th>
</tr>
</thead>
<tbody>
<tr>
<td>1x1</td>
<td>1x2</td>
<td>1x3</td>
</tr>
<tr>
<td>2x1</td>
<td>2x2</td>
<td>2x3</td>
</tr>
<tr>
<td>3x1</td>
<td>3x2</td>
<td>3x3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Footer 1</td>
<td>Footer 2</td>
<td>Footer 3</td>
</tr>
</tfoot>
</table>
<!-- Media Elements -->
<img src='http://placehold.it/200'/>
<img src='http://placehold.it/300'/>
<img src='http://placehold.it/400'/>
<video src="videofile.ogg" controls poster="http://placehold.it/200x150"></video>
<audio src="http://developer.mozilla.org/@api/deki/files/2926/=AudioTest_(1).ogg" controls></audio>
<!-- Inputs -->
<input type='hidden'/>
<input type='text' placeholder='Text'/>
<input type='password' placeholder='Password'/>
<input type='email' placeholder='Email'/>
<input type='url' placeholder='URL'/>
<input type='tel' placeholder='Telephone'/>
<input type='search' placeholder='Search'/>
<input type='time'/>
<input type='date'/>
<input type='week'/>
<input type='month'/>
<input type='datetime'/>
<input type='datetime-local'/>
<input type='number'/>
<input type='range'/>
<input type='color'/>
<input type='file'/>
<input type='image'/>
<input type='radio'/>
<input type='checkbox'/>
<input type='reset'/>
<input type='submit'/>
<input type='button' value='Input Button'/>
<!-- Other Form Elements -->
<button>Button</button>
<label>Label</label>
<textarea>Text Area</textarea>
<select>
<option>One</option>
<option>Two</option>
<option>Three</option>
<optgroup>
<option>One</option>
<option>Two</option>
<option>Three</option>
</optgroup>
</select>
<!-- Block -->
<div></div>
<header></header>
<nav></nav>
<aside></aside>
<section></section>
<article></article>
<footer></footer>