-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·55 lines (47 loc) · 1.12 KB
/
index.html
File metadata and controls
executable file
·55 lines (47 loc) · 1.12 KB
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
<!doctype html>
<html>
<head>
<title>Forms</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="/css/screen.css" media="all">
</head>
<body>
<form action="">
<h1><a href="/">This is crazy</a></h1>
<fieldset>
<h2>Call me?</h2>
<label>
<input type="radio" name="call-me" value="yes">
Yes
</label>
<label>
<input type="radio" name="call-me" value="maybe">
Maybe
</label>
<label>
<input type="radio" name="call-me" value="no">
No
</label>
</fieldset>
<fieldset>
<h2>What do I have to do?</h2>
<input type="checkbox" name="have-i-do" value="beg" id="beg">
<label for="beg">
Beg
</label>
<input type="checkbox" name="have-i-do" value="borrow" id="borrow">
<label for="borrow">
Borrow
</label>
<input type="checkbox" name="have-i-do" value="steal" id="steal">
<label for="steal">
Steal
</label>
</fieldset>
<fieldset>
<button type="submit">Go →</button>
</fieldset>
</form>
</body>
</html>