-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (100 loc) · 3.94 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>gym clone</title>
<!-- css connected -->
<link rel="stylesheet" href="style.css">
<!-- font added -->
<style> @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); </style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#"> About </a></li>
<li><a href="#"> Services </a></li>
<li><a href="#"> Classes </a></li>
<li><a href="#"> Trainers </a></li>
<li><a href="#"> FitLife </a></li>
<li> <button> SIGN UP NOW </button></li>
</ul>
</nav>
</header>
<main>
<div id="home">
<div>
<h2> Because You Deserve To Feel Amazing </h2>
</div>
<div>
<button > Explore Classes </button>
</div>
</div>
<div id="down-arrow"> <i class="fa-solid fa-angles-down"></i> </div>
<div id="app">
<h2> YOUR FITNESS JOURNEY HERE AT FITLIFE </h2>
<p> With expert guidance and a supportive community, we make reaching your goals fun and sustainable. </p>
<div>
<button > Learn More </button>
</div>
<div>
<img src="assets/app-img.avif" alt="error loading image">
</div>
</div>
<div id="offer">
<h1> WHAT WE OFFER</h1>
<p> From personalised training to group classes, find what fits your needs</p>
<div>
<button > Book Classes </button>
</div>
<div id="bada-box">
<div class="chhotu"> <i class="fa-solid fa-user"></i>
<h2> Personal Training</h2>
<h6> Get personalised workouts to reach your goals </h6>
</div>
<div class="chhotu"> <i class="fa-solid fa-users"></i>
<h2> Group Classes </h2>
<h6> Join Dynamic sessions, from yoga to HIIT</h6>
</div>
<div class="chhotu"> <i class="fa-solid fa-leaf"></i>
<h2> Nutrition Guide </h2>
<h6> Discover smarter eating for healthier life</h6>
</div>
<div class="chhotu"> <i class="fa-solid fa-tv"></i>
<h2> Online Coaching </h2>
<h6> Train anytime, anywhere with expert guidance </h6>
</div>
</div>
</div>
<div id="trainer-info">
<h1> MEET OUR TRAINERS </h1>
<div>
<button> Join Now </button>
</div>
<div id="train">
<div id="trainer1">
<h2> Sarah Johnson </h2>
<h6> Yoga & Meditation </h6>
</div>
<div id="trainer2">
<h2> Alex Thompson </h2>
<h6> High Intensity Interval Training </h6>
</div>
<div id="trainer3">
<h2> Emily Knight </h2>
<h6> Kickboxing </h6>
</div>
<div id="trainer4">
<h2> James Logan </h2>
<h6> Strength & Conditioning </h6>
</div>
</div>
</div>
<p> # </p>
</main>
<footer>
</footer>
</body>
</html>