-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNutrition.html
84 lines (80 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NutriFitTracker</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link rel="icon" href="Style/Assets/Air Balloon 1 (1).png" />
<link rel="stylesheet" href="Style/Stylings/nutrition.css" />
</head>
<body>
<header>
<h1 class="name" >FITNESS CLUB</h1>
<div class="nav">
<a href="index.html">HOME</a>
<a href="Nutrition.html">NUTRITION</a>
<a href="Fitnes.html">FITNESS</a>
<a href="Calories.html">CALORIES</a>
</div>
<label class="hamburger">
<input type="checkbox" />
<svg viewBox="0 0 32 32" class="toggler">
<path
class="line line-top-bottom"
d="M27 10 13 10C10.8 10 9 8.2 9 6 9 3.5 10.8 2 13 2 15.2 2 17 3.8 17 6L17 26C17 28.2 18.8 30 21 30 23.2 30 25 28.2 25 26 25 23.8 23.2 22 21 22L7 22"
></path>
<path class="line" d="M7 16 27 16"></path>
</svg>
</label>
</header>
<main>
<div class="input-field">
<div class="input" >
<input type="text" id="input" required="" autocomplete="off" placeholder="Food" autofocus>
</div>
<button class="custom-button">
<span></span>
<span></span>
<span></span>
<span></span> Search
</button>
</div>
</main>
<div class="info">
<div class="first">
<ul>
<li>Name : <span class="product"> _ </span></li>
<li>Carbohydrates : <span class="Carbohydrates">0</span> g</li>
<li>Cholestrol : <span class="Cholestrol">0</span> mg</li>
</ul>
</div>
<div class="information">
<ul>
<li>Fiber : <span class="Fiber">0</span> g</li>
<li>Saturated Fat : <span class="Saturated_fats">0</span> g</li>
<li>Total Fat : <span class="Total_Fat">0</span> g</li>
</ul>
</div>
<div class="third">
<ul>
<li>Potassium : <span class="Potassium">0</span> mg</li>
<li>Sodium : <span class="Sodium">0</span> mg</li>
<li>Sugar : <span class="sugar">0</span> g</li>
</ul>
</div>
</div>
<button id="scrollToTopBtn" title="Go to top"><script src="https://cdn.lordicon.com/lordicon.js"></script>
<lord-icon
src="https://cdn.lordicon.com/dwoxxgps.json"
trigger="hover"
state="hover-arrow-up-2"
colors="primary:#ffffff"
style="width:4rem;height:4rem"></button>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
<script src="JavaScript/nutrition.js"></script>
</body>
</html>