-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
80 lines (75 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>
<h1>All About Coffee</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="roasting.html">Roasting</a></li>
<li><a href="grinding.html">Grinding</a></li>
<li><a href="brewing.html">Brewing</a></li>
<li><a href="drinks.html">Drinks</a></li>
<li><a href="survey.html">Coffee Survey</a></li>
</ul>
</nav>
</header>
<h1>Coffee Survey</h1>
<aside>
<figure>
<img src="images/espresso.jpg" alt="a cup of coffee">
</figure>
</aside>
<form action="coffee-survey.php" method="post">
<fieldset>
<legend>Personal Information</legend>
Your Name <br>
<input type="text" name="name" id="" required size="40"><br>
Email Address <br>
<input type="text" name="email" id="" required size="40" placeholder="[email protected]"><br>
</fieldset>
<br>
<fieldset>
<legend>Your Coffeee Preferences</legend>
Tell us your coffee preparation methods <br>
<textarea name="prepration" id="" cols="40" rows="6"></textarea><br>
Do you grind your own beans?<br>
<input type="radio" name="grind" id="" value="yes">yes<br>
<input type="radio" name="grind" id="" value="no">no<br>
How do you drink your coffee?<br>
<input type="checkbox" name="drink" id="" value="sugar">with sugar<br>
<input type="checkbox" name="drink" id="" value="cream">with cream<br>
What is your favorite coffee drink?
<select name="favortie">
<option value="">please select a drink</option>
<option value="drip">drip coffee</option>
<option value="french">french press</option>
<option value="espresso">espresso</option>
<option value="latte">latte</option>
<option value="flavored">flavored</option>
</select>
</fieldset>
</form>
<footer>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="roasting.html">Roasting</a></li>
<li><a href="grinding.html">Grinding</a></li>
<li><a href="brewing.html">Brewing</a></li>
<li><a href="drinks.html">Drinks</a></li>
<li><a href="survey.html">Coffee Survey</a></li>
</ul>
</nav>
</footer>
</body>
</html>