-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (124 loc) · 4.57 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
<!DOCTYPE html>
<html>
<head>
<title>A sample page to demo the compiled CSS</title>
<link rel="stylesheet" href="dist/css/ph14.min.css">
</head>
<body>
<header role="banner">
<h1>This is a header</h1>
<h2>…with a <code>role="banner"</code> attribute.</h2>
</header>
<main class="ph14-wrap" role="main">
<section class="ph14-section">
<h2>A header with some text following it.</h2>
<p>A paragraph of text. <b>Lorem ipsum</b> dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut <i>labore et dolore</i> magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco. It contains an <a href="#1">inline link</a> for your enjoyment.</p>
<p>This also contains a sample of <small>small text</small>, as well as <sup>sup text</sup> and <sub>sub text</sub>.</p>
<ul>
<li>A list of things</li>
<li>An item on the list</li>
<li>Another item on the list</li>
<li>Some other cool item</li>
</ul>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<hr>
<p>Above is a horizontal rule.</p>
<div role="note">
This is a note (see the 'role="note"' attribute on this container). A <code><blockquote></code> tag can also be used.<br>
<q>This is a <code><q></code> tag.</q>
</div>
<p>
<a href="#2" role="button">A link with role=button</a>
</p>
</section>
<section class="ph14-section">
<h1><code><h1></code> header tag</h1>
<h2><code><h2></code> header tag</h2>
<h3><code><h3></code> header tag</h3>
<h4><code><h4></code> header tag</h4>
<h5><code><h5></code> header tag</h5>
<h6><code><h6></code> header tag</h6>
</section>
<section class="ph14-section">
<h1>Tables</h1>
<table>
<thead>
<tr>
<th>Table head 1</th>
<th>Table head 2</th>
<th>Table head 3</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Table foot 1</td>
<td>Table foot 2</td>
<td>Table foot 3</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Table content 1</td>
<td>Table content 2</td>
<td>Table content 3</td>
</tr>
<tr>
<td>Table content 1</td>
<td>Table content 2</td>
<td>Table content 3</td>
</tr>
<tr>
<td>Table content 1</td>
<td>Table content 2</td>
<td>Table content 3</td>
</tr>
</tbody>
</table>
</section>
<section class="ph14-section">
<h1>Forms</h1>
<form>
<fieldset>
<legend>Input fields</legend>
<div><label for="sample-text-input">Text input</label></div>
<input id="sample-text-input" type="text" />
<div><label for="sample-textarea">Textarea</label></div>
<textarea id="sample-textarea"></textarea>
<div class="ph14-spacer">
<label style="width: 25%" for="sample-checkbox-1">
<input id="sample-checkbox-1" type="checkbox" name="sample-checkboxes" />
Checkbox 1
</label>
<label style="width: 25%" for="sample-checkbox-2">
<input id="sample-checkbox-2" type="checkbox" name="sample-checkboxes" />
Checkbox 2
</label>
</div>
<div>
<label style="width: 25%" for="sample-radio-1">
<input id="sample-radio-1" type="radio" name="sample-radios" />
Radio 1
</label>
<label style="width: 25%" for="sample-radio-2">
<input id="sample-radio-2" type="radio" name="sample-radios" />
Radio 2
</label>
</div>
</fieldset>
<div class="ph14-spacer">
<div><label for="sample-select">Select box</label></div>
<select id="sample-select">
<option>A sample option</option>
<option>A sample option</option>
<option>A sample option</option>
<option>A sample option</option>
</select>
</div>
<button type="submit">A submit button</button> or <a href="#">cancel</a>
</form>
</section>
</main>
<footer>
</footer>
</body>
</html>