-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
154 lines (113 loc) · 5.76 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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>Kiteboarding: Kite Size Finder</title>
<!-- link style sheet -->
<link rel="stylesheet" href="style.css">
<!-- link google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Lato&family=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<!-- START body -->
<body>
<!-- START WRAPPER -->
<div class="wrapper">
<!-- Title -->
<header>
<h1>Kite Size Finder</h1>
<img src="./images/turkeyPointCore9.gif" alt="Kiteboarder riding and jumping on water">
</header>
<!-- START main -->
<main>
<!-- START form -->
<form action="">
<!-- Q1 Board Type -->
<fieldset class="question1">
<legend>Type of Board:</legend>
<input type="radio" name="board" id="twintip" value="twintip">
<label for="twintip">twintip</label>
<input type="radio" name="board" id="directional" value="directional">
<label for="directional">directional</label>
<input type="radio" name="board" id="foil" value="foil">
<label for="foil">foil</label>
</fieldset>
<!-- Q2 Kiteboarder Weight -->
<fieldset class="questions kg">
<legend>Kiteboarder Weight Range (kg):</legend>
<input type="radio" name="weight" id="less-than-45" value="less than 45">
<label for="less-than-45"> <45</label>
<input type="radio" name="weight" id="46-50" value="46-50">
<label for="46-50">46-50</label>
<input type="radio" name="weight" id="51-55" value="51-55">
<label for="51-55">51-55</label>
<input type="radio" name="weight" id="56-60" value="56-60">
<label for="56-60">56-60</label>
<input type="radio" name="weight" id="61-65" value="61-65">
<label for="61-65">61-65</label>
<input type="radio" name="weight" id="66-70" value="66-70">
<label for="66-70">66-70</label>
<input type="radio" name="weight" id="71-75" value="71-75">
<label for="71-75">71-75</label>
<input type="radio" name="weight" id="76-80" value="76-80">
<label for="76-80">76-80</label>
<input type="radio" name="weight" id="81-85" value="81-85">
<label for="81-85">81-85</label>
<input type="radio" name="weight" id="86-90" value="86-90">
<label for="86-90">86-90</label>
<input type="radio" name="weight" id="91-95" value="91-95">
<label for="91-95">91-95</label>
<input type="radio" name="weight" id="96-100" value="96-100">
<label for="96-100">96-100</label>
<input type="radio" name="weight" id="more-than-100" value="more than 100">
<label for="more-than-100"> >100</label>
</fieldset>
<!-- Q3 Location Wind Range -->
<fieldset class="questions">
<legend>Location Wind Range (knots):</legend>
<input type="radio" name="wind" id="7-10" value="7-10">
<label for="7-10">7-10</label>
<input type="radio" name="wind" id="11-15" value="11-15">
<label for="11-15">11-15</label>
<input type="radio" name="wind" id="16-21" value="16-21">
<label for="16-21">16-21</label>
<input type="radio" name="wind" id="22-27" value="22-27">
<label for="22-27">22-27</label>
<input type="radio" name="wind" id="28-33" value="28-33">
<label for="28-33">28-33</label>
<input type="radio" name="wind" id="34-40" value="34-40">
<label for="34-40">34-40</label>
</fieldset>
<!-- SUBMIT BUTTON -->
<input type="submit" value="Find Kite Size">
<!-- END FORM -->
</form>
<!-- Output when board undefined -->
<section class="boardRequired"></section>
<!-- back to the top -->
<button class ="top">Back To The Top</button>
<!-- Output Result -->
<section class="results"></section>
<!-- wave animation -->
<div class="ocean">
<div class="wave"></div>
<div class="wave"></div>
</div>
<!-- END main -->
</main>
<!-- END wrapper -->
</div>
<!-- footer starts -->
<footer>
<p>© 2021 <a href="https://github.com/luu-jennifer"> Jennifer Luu</a></p>
</footer>
<!-- footer ends -->
<!-- load JS and jQuery scripts -->
<script src='https://code.jquery.com/jquery-3.4.0.min.js' integrity='sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=' crossorigin='anonymous'></script>
<script src="script.js"></script>
<!-- END body -->
</body>
</html>