-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (65 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<html lang="en">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="food cart, vegan, vegetarian, flexitarian">
<meta name="description" content="Find out what to eat... On the street!">
<title>StreetTreat</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> -->
<!--<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<h1 class="title">Street Treat</h1>
<h2 class="subtitle">Where To Eat!</h2>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<p class="description">Are you always on the go, living in the moment? Don't forget to eat! Street Treat, in just a few clicks, will help navigate you to the most common street foods catered just to your needs and wants. Street Treat yo self!</p>
<div class="row" id="firstQuestion">
<h2 class="question">How Hungry Are You?</h2>
<div class="row">
<div class="button-box">
<div class="btn hunger-games" id="nosh">Kinda.</div>
<div class="btn hunger-games" id="starving">Very.</div>
</div>
</div>
</div>
<div class="row" id="secondQuestion">
<h2 class="question">Which Sounds Better Right Now?</h2>
<div class="row">
<div class="button-box">
<div class="btn taste-type" id="sweet">Something Sweet.</div>
<div class="btn taste-type" id="savory">Something Savory.</div>
<div class="btn taste-type" id="both">A Little Of Both.</div>
</div>
</div>
</div>
<div class="row" id="thirdQuestion">
<h2 class="question">I am a...</h2>
<div class="row">
<div class="button-box">
<div class="btn eating-prefs" id="veg">Vegan/Vegetarian.</div>
<div class="btn eating-prefs" id="omni">I'll Eat Anything!</div>
</div>
</div>
</div>
<div class="row">
<!-- <script id="eats" type="x-tmpl-mustache"></script> -->
<div id="eats"></div>
</div>
</div>
</div>
<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
<script type="text/javascript" src="/js/mustache.min.js"></script>
<script type="text/javascript" src="/js/logic.js"></script>
<script type="text/javascript" src="/js/appearance.js"></script>
</div>
</body>
</html>