-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
54 lines (43 loc) · 1.48 KB
/
Copy pathforms.html
File metadata and controls
54 lines (43 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Forms Exercise</title>
</head>
<body>
<h1>Register With Us</h1>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">Email:</label>
<input id="email" name="email" type="text">
<br>
<label for="password">Password:</label>
<input id="password" name="password" type="password" placeholder="Password">
<br>
<br>
<label for="bio">Bio:</label>
<textarea id="bio" name="bio"></textarea>
<br>
<input type="radio" id="billboard" name="advertisement" value="billboard">
<label for="billboard">Billboard</label>
<br>
<input type="radio" id="radio advertisement" name="advertisement" value="radio advertisement">
<label for="radio advertisement">Radio Advertisement</label>
<br>
<input type="radio" id="internet advertisement" name="advertisement" value="internet advertisement">
<label for="internet advertisement">Internet Advertisement</label>
<br>
<input type="radio" id="other" name="advertisement" value="other">
<label for="other">Other</label>
<br>
<br>
<label for="question">What browser are you using?</label>
<br>
<select name="question" id="question">
<option value="chrome">Google Chrome</option>
<option value="firefox">Firefox</option>
<option value="edge">Microsoft Edge</option>
<option value="other">Other</option>
</select>
</form>
</body>
</html>