-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
49 lines (46 loc) · 1.44 KB
/
forms.html
File metadata and controls
49 lines (46 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<h1>HTML Form Exercise</h1>
<hr>
<form method="GET" action="https://request-inspector.glitch.me/">
<label for="username">Email</label>
<br>
<input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<br>
<input id="password" name="password" type="password">
<br>
<br>
<label>
<textarea name="comment" rows="3" cols="30" placeholder="Tell us about yourself"></textarea>
</label>
<br>
<br>
<label>How did you hear about us?</label>
<fieldset>
<input type="radio" name="a-billboard" value="Billboard">Billboard<br>
<input type="radio" name="b-radio advertisement" value="Radio Advertisement">Radio Advertisement<br>
<input type="radio" name="c-internet advertisment" value="Internet Advertisement">Internet Advertisement<br>
<input type="radio" name="d-other" value="Other">Other<br>
</fieldset>
<br>
<label>What web browser are you using?</label>
<br>
<select name="Browser">
<option value="blank"> </option>
<option value="Chrome">Chrome</option>
<option value="Edge">Edge</option>
<option value="Firefox">Firefox</option>
</select>
<br>
<br>
<input type="submit" value="Submit Responses" name="Submission" id="Submit button">
</form>
</body>
</html>