-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
40 lines (40 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>App Reset</title>
<link rel="stylesheet" href="app-reset.css">
</head>
<body>
<h1>h1</h1>
<h2>h2</h2>
<h3>h3</h3>
<h4>h4</h4>
<h5>h5</h5>
<h6>h6</h6>
<p>
A paragraph
</p>
<div>
A div
</div>
<span>A span</span>
<a href="#">An anchor</a>
<input type="text" name="name" value="">
<fieldset>
<label>A checkbox</label>
<input type="checkbox" name="name" value="">
</fieldset>
<fieldset>
<label>Radio Group</label>
<input type="radio" name="beverage" id="tea" value="tea"/>
<input type="radio" name="beverage" id="coffee" value="coffee"/>
</fieldset>
<input type="number" min="10" max="100" step="10">
<svg height="50" width="50" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="50" fill="#f90"></circle>
</svg>
<img alt="dummy image" src="http://placehold.it/100x100"/>
</body>
</html>