-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipe.html
More file actions
70 lines (65 loc) · 2.66 KB
/
recipe.html
File metadata and controls
70 lines (65 loc) · 2.66 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
<!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">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="style.css">
<title>FitGuide</title>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="#" data-target="mobile-demo" class="sidenav-trigger button-collapse">
<i class="material-icons ">menu</i>
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="mission.html">About</a></li>
<li><a href="calories.html">Calorie Needs</a></li>
<li><a href="recipe.html">Recipes</a></li>
<li><a href="planner.html">Plan Your Workout</a></li>
</ul>
</div>
</nav>
<ul class="sidenav" id="mobile-demo">
<li><a href="index.html">Home</a></li>
<li><a href="mission.html">About</a></li>
<li><a href="calories.html">Calorie Needs</a></li>
<li><a href="recipe.html">Recipes</a></li>
<li><a href="planner.html">Plan Your Workout</a></li>
</ul>
<br><br><br><br>
<div class="container">
<h2 class="teal-text page-title">Find foods that fit your diet!</h2>
<blockquote>If you're looking for full recipes use the search field on the left. But if you want data on specific foods, then used the search field on the right.</blockquote>
<div class="row">
<br>
<div class="col s4">
<h6 class="col s12">Search Recipes</h6>
<br>
<input type="text" id="recipe" class="col s12">
</div>
<div class="col s4 offset-s4 adjust-2">
<h6 class="col s12">Search Specific Food</h6>
<br>
<input type="text" id="food" class="col s12">
</div>
</div>
<div class="row">
<a class="waves-effect waves-light btn col s4" id="recipeBtn">Get Recipes</a>
<a class="waves-effect waves-light btn col s4 offset-s4 adjust" id="foodBtn">Get Food Items</a>
</div>
<br><br>
<div class="holder"></div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="jQuery.js"></script>
<script src="recipe.js"></script>
</body>
</html>