-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
92 lines (88 loc) · 4.11 KB
/
survey.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link href="css/survey.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<title>Accessible Frog</title>
</head>
<body>
<div class="main-nav" role="navigation">
<ul class="nav">
<li class="name"><a href="index.html">Accessible Frog</a></li>
<li><a href="tour.html">Tour</a></li>
<li><a href="#">Survey</a></li>
</ul>
</div>
<header>
<h1>Accessible Frog</h1>
<p>we make awesome music</p>
</header>
<main role="main">
<h3 class= "heading">Survey</h3>
<div class="card">
<div class="flex">
<img class="photo" src= "img/concert01.jpg" alt="concert image" role="banner">
<div class="container">
<form class="survey" role="form">
<fieldset>
<legend>Who is your favorite band member:</legend>
<input id="john" type="radio" name="res" value="John"><label for="john">John</label>
<input id="hazzard" type="radio" name="res" value="Hazzard"><label for="hazzard">Hazzard</label>
<input id="bob" type="radio" name="res" value="Bob"><label for="bob">Bob</label>
<input id="sally" type="radio" name="res" value="Sally"><label for="sally">Sally</label>
</fieldset>
<fieldset>
<legend>What is your favorite album:</legend>
<label for="albums">Favorite Albums</label>
<select id="albums" name="select">
<option value="1">A Day Of Old</option>
<option value="2">Diamond Fireworks</option>
<option value="3">Enjoy Your Desire</option>
<option value="4">Finding My Shadow</option>
<option value="5">Heroic Forever</option>
<option value="6">Midnight Fires</option>
<option value="7">Music Of My Life</option>
<option value="8">Party For An Angel</option>
<option value="9">Song For Yesterday</option>
<option value="10">Street Of The Rider</option>
<option value="11">This Is For You</option>
</select>
</fieldset>
<fieldset>
<legend>What is your favorite song:</legend>
<label for="textarea">Favorite Song</label>
<textarea id="textarea"></textarea>
</fieldset>
</form>
</div>
</div>
</div>
<h3 class= "heading">Newsletter</h3>
<div class="card">
<div class="flex">
<img class="photo" src= "img/the_band.jpg" alt="the band" role="banner">
<div class="container">
<form class="newsletter" role="form">
<p><label for="name">Name:</label><input id="name" type ="text" name="textfield" aria-required="true"></p>
<p><label for="email">Email:</label><input id="email" type ="email" name="textfield" aria-required="true"></p>
<p><label for="reemail">Retype Email:</label><input id="reemail" type ="email" name="textfield" aria-required="true"></p>
<button type="submit" aria-describedby="hint">Sign Up</button>
<p id="hint">Sign up for Newsletter</p>
</form>
</div>
</div>
</div>
</main>
<footer role="contentinfo">
<ul>
<li><a href="#" class="social twitter"><img src= "img/twitter-32.png" alt="twitter"></a></li>
<li><a href="#" class="social youtube"><img src= "img/youtube-32.png" alt="youtube"></a></li>
<li><a href="#" class="social spotify"><img src= "img/spotify-32.png" alt="spotify"></a></li>
</ul>
<p class="copyright">Copyright 2015, Accessible Frog</p>
</footer>
</body>
</html>