-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
63 lines (60 loc) · 2.46 KB
/
forms.html
File metadata and controls
63 lines (60 loc) · 2.46 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
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forms Exercise</title>
<link rel="stylesheet" href="css/formscss.css">
</head>
<body>
<div id="whole-form" class="classic">
<h1>Forms Exercise</h1>
<form action="https://www.elformo.com/forms/67f409aa-a131-4741-82d7-58b9ac8ee28a" method="post" accept-charset="UTF-8">
<label for="email">Email</label>
<input id="email" name="email" type="text" placeholder="Please enter email...">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Please enter password...">
<br>
<label for="text">Bio Area:</label>
<br>
<textarea name="Biography" id="text" cols="30" rows="10" placeholder="Please type your bio here!"></textarea>
<br>
<h3>How did you here about us?</h3>
<label for="billboard">Billboard</label>
<input name="Multiplechoice1" id="billboard" value="Billboard" type="radio" >
<br>
<label for="radioAd">Radio Advertisement</label>
<input name="Multiplechoice2" id="radioAd" value="radioAd" type="radio">
<br>
<label for="internetAd">Internet Advertisement</label>
<input name="Multiplechoice3" id="internetAd" value="internetAd" type="radio">
<br>
<label for="other">Other</label>
<input name="Multiplechoice4" id="other" value="other" type="radio">
<br>
<h3>Which internet browser are you using?</h3>
<label for="chrome">Google Chrome</label>
<input id="chrome" name="Google Chrome" type="checkbox">
<br>
<label for="firefox">Firefox</label>
<input id="firefox" name="Firefox" type="checkbox">
<br>
<label for="DuckGo">DuckDuckGo</label>
<input id="DuckGo" name="DuckDuckGo" type="checkbox">
<br>
<label for="other1">Other</label>
<input id="other1" name="other" type="checkbox">
<br>
<label for="otherres"></label>
<textarea name="otherres" id="otherres" cols="30" rows="2" placeholder="If other, please type which browser you are currently using."></textarea>
<br>
<br>
<button type="submit">Please click here to submit!</button>
<br>
<br>
<label for="newsletter">Sign up to our newsletter!</label>
<input id="newsletter" name="newsletter" type="checkbox" checked>
</form>
</div>
</body>
</html>