-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalories.html
88 lines (85 loc) · 3.12 KB
/
Calories.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
<!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/calories.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">
<input type="text" required="" autocomplete="off" id="input" placeholder="Activity" autofocus/>
</div>
<button class="button">
<span></span>
<span></span>
<span></span>
<span></span>Search</button>
</main>
<div class="content-res">
<div class="first card">
<ul>
<li>Name : <span class="card-1-name"></span></li>
<li>Calories Per Hour : <span class="card-1-cal"></span> Kcal </li>
<li>Duration : <span class="card-1-time"></span> Minutes </li>
</ul>
</div>
<div class="second card">
<ul>
<li>Name : <span class="card-2-name"></span></li>
<li>Calories Per Hour : <span class="card-2-cal"></span Kcal ></li>
<li>Duration : <span class="card-2-time"></span> Minutes </li>
</ul>
</div>
<div class="third card">
<ul>
<li>Name : <span class="card-3-name"></span></li>
<li>Calories Per Hour : <span class="card-3-cal"></span> Kcal </li>
<li>Duration : <span class="card-3-time"></span> Minutes </li>
</ul>
</div>
<div class="fourth card">
<ul>
<li>Name : <span class="card-4-name"></span></li>
<li>Calories Per Hour : <span class="card-4-cal"></span> Kcal </li>
<li>Duration : <span class="card-4-time"></span> Minutes </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">
</lord-icon></button>
<script src="JavaScript/calories.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
</body>
</html>