-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
60 lines (53 loc) · 2.36 KB
/
forms.html
File metadata and controls
60 lines (53 loc) · 2.36 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--<link rel="stylesheet" href="css/reset.css">-->
<!--<link rel="stylesheet" href="css/layout.css">-->
<!--<link rel="stylesheet" href="css/">-->
<!--<link rel="stylesheet" href="https://kit.fontawesome.com/a470e83216.css" crossorigin="anonymous">-->
<title>Forms Exercise</title>
</head>
<body>
<div class="page-wrapper">
<h1>Register With Us</h1>
<form action="https://request-inspector.glitch.me" method="POST">
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Username:" autofocus required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Password:" required>
</div>
<div>
<label for="bio"></label>
<textarea name="bio" id="bio" cols="100" rows="10"></textarea>
</div>
<div>
<input type="radio" name="about-us" id="billboard" value="billboard">
<label for="billboard">Billboard</label>
<input type="radio" name="about-us" id="radio-advertisement" value="radio-advertisement">
<label for="radio-advertisement">Radio Advertisement</label>
<input type="radio" name="about-us" id="internet-advertisement" value="internet-advertisement">
<label for="internet-advertisement">Internet Advertisement</label>
<input type="radio" name="about-us" id="other" value="other">
<label for="other">Other</label>
</div>
<div>
<label for="user-browser">Which browser are you using?</label>
<select name="user-browser" id="user-browser">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="safari">Safari</option>
<option value="other-browser">Other</option>
</select>
</div>
<button type="submit">Submit Your Info</button>
</form>
</div>
<!-- SCRIPTS -->
<script src="js/utils.js"></script>
<script src="js"></script>
</body>
</html>