-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.html
77 lines (70 loc) · 3.32 KB
/
recipes.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitFit</title>
<link rel="shortcut icon" href="assets/images/gitfit_favicon.png" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans|PT+Sans|Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/b668c475b8.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/annyang/2.6.0/annyang.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a href="index.html"><img id="logo" src="assets/images/gitfit_logo.png" /></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Body</a></li>
<li><a href="health.html">Health</a></li>
<li><a href="recipes.html">Recipes</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container">
<div class="row">
<div class="jumbotron" id="recipes-jumbo">
<h1 id="jumbText">Recipes</h1>
<h2 id="jumbSubText">search for healthy recipes</h2>
</div>
</div>
<br><div class="row">
<div class="col-md-5" id="recipeSearch">
<div class="input-group">
<input type="text" id="input-field" class="form-control" placeholder="Enter Ingredient">
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="recipeSearchButton">Search</button>
</span>
</div>
</div>
<div class="col-md-7">
<div id="mic"><i class="fa fa-microphone fa-lg" aria-hidden="true"></i> You can search with voice commands as well. For example say: recipes with eggs, recipes with chicken...</div>
</div>
</div>
<br><div class="row" id="recipesRow">
<div class="col-md-12" id="recipesRow"></div>
</div>
</div>
<br><footer class="footer">©2017 Ebru Yucesar, Anuradha Ramachandra, Rachel Vaughan, Raquel Rodriguez, Jamie Gelo</footer>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- firebase link -->
<script src="https://www.gstatic.com/firebasejs/4.1.1/firebase.js"></script>
<!--local javascript files -->
<script src="assets/javascript/health.js"></script>
<script src="assets/javascript/recipes.js"></script>
<script src="assets/javascript/index.js"></script>
</body>
</html>