-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
63 lines (63 loc) · 1.88 KB
/
forms.html
File metadata and controls
63 lines (63 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Register With Us</title>
</head>
<body>
<form
action="https://request-inspector.glitch.me/"
method="post"
id="info-form"
>
<div id="form-email">
<label for="email">Email:</label>
<input
type="text"
id="email"
name="email"
placeholder="Enter your email address"
/>
</div>
<div id="form-password">
<label for="password">Password:</label>
<input type="password" id="password" name="password" />
</div>
<div class="form-bio">
<label for="bio">Bio:</label>
<textarea
name="bio"
id="bio"
placeholder="Please describe yourself"
></textarea>
</div>
<div class="form-radio">
Billboard
<label for="radio-billboard"></label
><input
type="radio"
name="radio-billboard"
id="radio-billboard"
/><br />
Radio Advertisement
<label for="radio-radio"></label
><input type="radio" name="radio-radio" id="radio-radio" /><br />
Internet Advertisement
<label for="radio-internet"></label
><input type="radio" name="radio-internet" id="radio-internet" /><br />
Other <label for="radio-other"></label
><input type="radio" name="radio-other" id="radio-other" />
</div>
<div>
<label for="browser">Favorite Browser:</label>
<select name="browser" id="browser" form="info-form">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="edge">Edge</option>
<option value="brave">Brave</option>
</select>
</div>
<button type="submit" style="background-color: crimson">Submit</button>
</form>
</body>
</html>