-
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.3 KB
/
Copy pathforms.html
File metadata and controls
48 lines (46 loc) · 1.3 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">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form method="POST" action="">
<label for="username">Username</label>
<input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br>
<hr>
<br>
<label>
Bio<br>
<textarea name="Bio"></textarea>
</label>
<hr>
<br>
<section>
How did you hear about us?<br>
<label>
<input type="radio" name="How did you hear about us?" value="Billboard">Billboard<br>
<input type="radio" name="How did you hear about us?" value="Radio Advertisement">Radio Advertisement<br>
<input type="radio" name="How did you hear about us?" value="Internet Advertisement">Internet Advertisement<br>
<input type="radio" name="How did you hear about us?" value="Other">Other<br>
<!-- Allow multiple selections by removing the "name" property -->
</label>
</section>
<hr>
<br>
<select name="Browser Preference">
<option value="Firefox - Best">Firefox</option>
<option value="Chrome - Mediocre">Chrome</option>
<option value="Safari - Lame">Safari</option>
<option value="Edge - Get out...">Edge</option>
</select>
<br>
<br>
<input type="submit">
</form>
</body>
</html>