-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
74 lines (72 loc) · 2.4 KB
/
main.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
<!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="icon" href="Style/Assets/Air Balloon 1 (1).png">
<link rel="stylesheet" href="Style/Stylings/style.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="written-text">
<div class="content">
<h1 class="big-text">
<span>SHAPE</span> YOUR <br />
BODY
</h1>
<p class="description">
A good quality health or fitness centre provides <br />
a safe environment for exercise and is supervised <br />
by a free website.
</p>
</div>
<div class="extra-content">
<div class="time">
<img src="Style/Assets/noun-time-1103573.png" alt="" />
<span>Hours</span>
<span class="long">1.5</span>
</div>
<div class="time">
<img src="Style/Assets/noun-calorie-4197914.png" alt="" />
<span>Kcal</span>
<span class="long long-dif">550</span>
</div>
<div class="time">
<img src="Style/Assets/Group.png" alt="" />
<span>Poses</span>
<span class="long">15</span>
</div>
<div class="time">
<img src="Style/Assets/dumb.png" alt="" />
<span>Sets</span>
<span class="long">5</span>
</div>
</div>
</div>
<div class="aside-img">
<img
src="Style/Assets/ara-cho-m_zmf2J063Q-unsplash.png"
alt=""
/>
</div>
</main>
<script src="JavaScript/nav.js"></script>
</body>
</html>