-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputForm.html
More file actions
119 lines (112 loc) · 5.21 KB
/
inputForm.html
File metadata and controls
119 lines (112 loc) · 5.21 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Beachbody Program Finder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Code Fellows 201 Final">
<meta name="description" content="Code Fellows 201 Final ~ Beachbody Program Finder ">
<meta name="keywords" content="Code Fellows, Beachbody">
<link href="img/tabLogo.png" rel="icon" type="image/png">
<link href="https://fonts.googleapis.com/css?family=Lato|Open+Sans|Raleway|Roboto|Oswald|Rajdhani" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/grid.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/form.css" type="text/css">
</head>
<body>
<!-- header -->
<header>
<nav class="topmenu">
<a id="logo" href="index.html"><img class="left" src="img/legdaylogo.png" alt="BeachBody logo" height="60"></a></div>
<ul>
<li id="navjournal"><a href="journal.html">My Journal</a></li>
</ul>
</nav>
<div id="inputresults">
<img src="img/workout2.jpg">
</div>
</header>
<!-- main / form -->
<div class="lbar"></div>
<main>
<div class="formCenterwrap">
<form id="workoutSelection">
<fieldset>
<h1><legend>Choose Your Workout</legend></h1>
<h6><input id="name" type="text" name="userName" placeholder="Your Name"></h6>
<h5>Length of Workout</h5>
<ul>
<li><input type="radio" name="time" value="1" required>Less than 30mins</li>
<li><input type="radio" name="time" value="2">30 to 40 mins</li>
<li><input type="radio" name="time" value="3">More than 45 mins</li>
</ul>
<h5>Intensity Level</h5>
<ul>
<li><input type="radio" name="intensity" value="1" required>Beginner</li>
<li><input type="radio" name="intensity" value="2">Intermediate</li>
<li><input type="radio" name="intensity" value="3">Advanced</li>
<li><input type="radio" name="intensity" value="4">Extreme</li>
</ul>
<h6><select id="workoutStyle" name="style" required>
<option value="" disabled selected>Select Workout Style</option>
<option value="dance">Dance</option>
<option value="cardio">Cardio</option>
<option value="extreme">Extreme</option>
<option value="tone">Tone</option>
<option value="Brazilian">Brazilian</option>
<option value="yoga">Yoga</option>
<option value="low-impact">Low-impact</option>
<option value="express">Express</option>
</select></h6>
</div>
<div class="midbar">
<button type="submit" name="sendSelection">Submit Info</button>
</div>
</fieldset>
</form>
<div class="midblock">
<h1>SWEAT</h1>
<h1>SMILE</h1>
<h1>RECURSE</h1>
</div>
</main>
<!-- footer -->
<footer>
<div class="section group">
<div class="col span_3_of_12"></div>
<div class="col span_3_of_12">
<h2>ORDER NOW</h2>
<a href="https://www.beachbody.com/" target="_blank"><img class="left" src="img/legdaylogo.png" alt="BeachBody logo" height="60" title="Order Your Beachbody Program Now"></a></div>
<div class="col span_3_of_12">
<h3><a href="about.html">About Us</a></h3>
<div class="sm-container">
<ul class="social-media-list">
<li>
<a href="https://www.facebook.com/beachbody/" target="_blank"> <img src="img/fb.png" width="48" height="48" alt="Like Us on Facebook" title="Like Us on Facebook"></a>
</li>
<li>
<a href="https://twitter.com/Beachbody" target="_blank"> <img src="img/twit.png" width="48" height="48" alt="Follow Us on Twitter" title="Follow Us on Twitter"></a>
</li>
<li>
<a href="https://www.pinterest.com/beachbody/" target="_blank"> <img src="img/pin.png" width="48" height="48" alt="Follow Us on Pinterest" title="Follow Us on Pinterest"></a>
</li>
<li>
<a href="https://www.youtube.com/user/BeachbodyVideo" target="_blank"> <img src="img/yt.png" width="48" height="48" alt="Follow Us on YouTube" title="Follow Us on YouTube"></a>
</li>
<li>
<a href="https://www.instagram.com/beachbody/" target="_blank"> <img src="img/instagram.png" width="48" height="48" alt="Follow Us on Instagram" title="Follow Us on Instagram"></a>
</li>
</ul>
</div>
</div>
<div class="col span_3_of_12"></div>
</div>
<div class="cbar">
<p>Copyright © 2017 We Always Skip Leg Day. All Rights Reserved.</p>
<p>Disclaimer ~ This site is a Final Project for Code Follows Course 201 - October 2017</p>
</div>
</footer>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>