-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
71 lines (71 loc) · 2.7 KB
/
forms.html
File metadata and controls
71 lines (71 loc) · 2.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
<link rel="stylesheet" href="CSS/resets.css">
<link rel="stylesheet" href="CSS/layout.css">
<link rel="stylesheet" href="CSS/forms-exercises.css">
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<fieldset>
<legend><h4>Log In</h4></legend>
<div class="row">
<div class="column justify-center align-center">
<div class="input-wrapper">
<label for="email">E-mail:</label>
<input type="text" id="email" name="email">
</div>
<div class="input-wrapper">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
</div>
</div>
</div>
</fieldset>
<fieldset>
<legend><h4>BIO</h4></legend>
<div class="row">
<div class="column justify-center align-center">
<div class="input-wrapper">
<textarea name="bio" id="bio" cols="5" rows="5"></textarea>
</div>
</div>
</div>
</fieldset>
<fieldset>
<legend><h4>How did you hear about us?</h4></legend>
<div class="row">
<div class="column justify-center">
<div class="input-wrapper">
<label for="billboard">Billboard:</label>
<input type="checkbox" name="hearus" value="billboard" id="billboard">
</div>
<div class="input-wrapper">
<label for="radioAd">Radio Ad:</label>
<input type="checkbox" name="hearus" value="radioAd" id="radioAd">
</div>
<div class="input-wrapper">
<label for="internet">Internet Ad:</label>
<input type="checkbox" name="hearus" value="internet" id="internet">
</div>
<div class="input-wrapper">
<label for="other">Other:</label>
<input type="checkbox" name="hearus" value="other" id="other">
</div>
</div>
</div>
</fieldset>
<fieldset>
<legend><h4><label for="browser">What web browser are you using?</label></h4></legend>
<select name="browser" id="browser">
<option value="Chrome">Chrome</option>
<option value="FireFox">FireFox</option>
<option value="Explorer">Explorer</option>
<option value="Safari">Safari</option>
</select>
</fieldset>
</form>
</body>
</html>