-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
94 lines (75 loc) · 2.66 KB
/
forms.html
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Veridian Dynamics - Register With Us!</title>
<link rel="stylesheet" href="css/forms.css">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
</head>
<body>
<header>
<div id="header">
<h1>Register With Us!</h1>
</div>
</header>
<form method="POST" action="https://requestb.in/11yop061">
<br>
<img src="img/journal.jpeg" alt="" width="300px" height="200px" class="left" id="journal">
<img src="img/working.jpeg" alt="" width="300px" height="200px" class="right" id="working">
<div>
<div id="border">
<label for="email">Email: </label>
<input type="email" id="email" name="email" placeholder=" [email protected]" required>
<br>
<br>
<label for="password">Password: </label>
<input id="password" name="password" type="password" placeholder=" 5 characters minimum" required>
</div>
</div>
<div>
<h2><label for="bio">Biography</label></h2>
<textarea id="bio" name="bio" placeholder=" Tell us about you!"></textarea>
</div>
<div>
<!--radio buttons-->
<p><strong><label>How did you hear about us? (You can select multiple answers.)</label></strong></p>
<label>
<input type="radio" name="bill" value="billboard">Billboard
</label>
<label>
<input type="radio" name="radio" value="radio">Radio
</label>
<label>
<input type="radio" name="int" value="internet">Internet
</label>
<label>
<input type="radio" name="oth" value="other">Other
</label>
</div>
<br>
<div>
<!--drop-down menu-->
<strong><label for="browser">What web browser are you using?</label></strong>
<select id="browser" name="browser">
<option value="chrome">Chrome</option>
<option value="mozilla">Mozilla Firefox</option>
<option value="ie">Internet Explorer</option>
<option value="edge">Edge</option>
<option value="opera">Opera</option>
<option value="other">Other</option>
</select>
</div>
<br>
<img src="img/workspace.jpeg" width="300px" height="200px" class="left" id="workspace"/>
<img src="img/white.jpeg" width="300px" height="200px" class="right" id="coffee"/>
<div>
<button id="button">Register</button>
</div>
</form>
<footer>
<p id="footer">
© 2017 Veridian Dynamics
</p>
</footer>
</body>
</html>