-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
48 lines (46 loc) · 1.78 KB
/
forms.html
File metadata and controls
48 lines (46 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">
E-Mail:
</label>
<input name="email" placeholder="Enter your email address" type="text" id="email">
<label for="password">
Password:
</label>
<input name="password" placeholder="Enter your password" type="password" id="password">
<p><label for="bio">
Bio:</label></p>
<textarea id="bio" name="bio" placeholder="Tell us about yourself" rows="5" cols="40"></textarea>
<br>
<section>
How did you hear about us?
<input type="radio" name="about" value="billboard" id="billboard"><label for="billboard">Billboard</label>
<input type="radio" name="about" value="radio" id="radio"><label for="radio">Radio Advertisement</label>
<input type="radio" name="about" value="net" id="net"><label for="net">Internet Advertisement</label>
<input type="radio" name="about" value="other" id="other"><label for="other">Other</label>
</section>
<!-- if want to select multiple use type="checkbox"-->
<br>
<label for="browser">
What internet browser do you use primarily?</label>
<select name="browser" id="browser">
<option value="NSN">NetScape Navigator</option>
<option value="Opera">Opera</option>
<option value="Inet">Internet Explorer</option>
<option value="chrome">Google Chrome</option>
<option value="safari">Apple Safari</option>
<option value="edge">Microsoft Edge</option>
<option value="firefox">Mozilla Firefox</option>
<option value="brave">Brave</option>
</select>
<button type="submit">Submit</button>
</form>
<footer> ©1994 best viewed in netscape navigator</footer>
</body>
</html>