-
Notifications
You must be signed in to change notification settings - Fork 0
/
nutrition.html
108 lines (96 loc) · 4.42 KB
/
nutrition.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>CPU Lookup</title>
</head>
<body>
<nav class="#f5f5f5 grey lighten-4" role="navigation">
<div class="nav-wrapper">
<a id="logo-container" href="index.html" class="brand-logo black-text">What's in Your Kitchen?</a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="material-icons black-text">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a class="black-text" href="index.html">Dashboard</a></li>
<li><a class="black-text" href="nutrition.html">CPU LookUp</a></li>
<li><a class="black-text" href="myfavorites.html">Saved Recipes</a></li>
</ul>
</div>
</nav>
<ul class="sidenav" id="mobile-demo">
<li><a class="black-text" href="index.html">Dashboard</a></li>
<li><a class="black-text" href="nutrition.html">CPU LookUp</a></li>
<li><a class="black-text" href="myfavorites.html">Saved Recipes</a></li>
</ul>
<header>
<h3 class="center-align">Find Barcode Information</h3>
<p class="center-align">Simply enter the barcode you want to look up and recieve nutritional information within
seconds. </p>
</header>
<main class="container container-2">
<div class="row">
<div id="search-bar" class="col s12 m3">
<div id="search" class="sidebar #b0bec5 blue-grey lighten-3 ">
<h4 class="center-align">Barcode Lookup:</h4>
<div class="input-field inline">
<input id="input_inline" type="text" class="#ffffff white ">
<button id="lookup-btn" class="btn">Lookup!</button>
</div>
</div>
</div>
<div class="col s12 m9 img-div">
<h4 class="center-align nutrition-facts"></h4>
<table id="display-table" class="striped centered">
<thead></thead>
<tbody>
<tr>
<td class="item-name"></td>
<td class="item-label"></td>
</tr>
<tr>
<td class="brand-name"></td>
<td class="brand-label"></td>
</tr>
<tr>
<td class="servings"></td>
<td class="serving-size"></td>
</tr>
<tr>
<td class="carbs"></td>
<td class="total-carbs"></td>
</tr>
<tr>
<td class="fat"></td>
<td class="total-fat"></td>
</tr>
<tr>
<td class="protein"></td>
<td class="total-protein"></td>
</tr>
<tr>
<td class="fiber"></td>
<td class="total-fiber"></td>
</tr>
<tr>
<td class="energy"></td>
<td class="total-energy"></td>
</tr>
<tr>
<td class="ingredients"></td>
<td class="total-ingredients"></td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<footer class='center-align'>
<p>© Kammie, Jammie, Brandon</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/script3.js"></script>
</body>
</html>