-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms_exercise.html
More file actions
50 lines (48 loc) · 1.93 KB
/
forms_exercise.html
File metadata and controls
50 lines (48 loc) · 1.93 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Forms Exercise</title>
</head>
<body>
<header>
<h1>Register With Us</h1>
</header>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">Email</label>
<input id="email" name="email" type="text" placeholder="example@email.com">
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Enter Password">
<br>
<br>
<label for="bio">Bio:</label>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Tell us about yourself"></textarea>
<br>
<section>
<p>How did you hear about us?</p>
<label for="billboard">Billboard</label>
<input type="radio" name="billboard" id="billboard" value="billboard">
<label for="radio-advertisement">Radio Advertisement</label>
<input type="radio" name="radio-advertisement" id="radio-advertisement" value="radio-advertisement">
<label for="internet-advertisement">Internet Advertisement</label>
<input type="radio" name="internet-advertisement" id="internet-advertisement" value="internet-advertisement">
<label for="other">Other</label>
<input type="radio" name="other" id="other" value="other">
</section>
<br>
<section>
<label for="web-browser">What web browser are you using? </label>
<select name="web-browser" id="web-browser">
<option value="Google-Chrome">Google Chrome</option>
<option value="Safari">Safari</option>
<option value="Firefox">Firefox</option>
<option value="Internet-Explorer">Internet Explorer</option>
</select>
</section>
<br>
<button type ="submit">Submit</button>
</body>
</html>