-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
176 lines (163 loc) · 4.28 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fitness Website</title>
<!-- External CSS link -->
<link rel="stylesheet" href="style.css">
<!-- Ionicons icon -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</head>
<body>
<section class="hero">
<div class="container">
<div class="logo">ASTRAEUS GYM</div>
<div class="content">
<h2 class="main-heading">Be your <span>best</span></h2>
<button class="btn">
<a href="#">Join today</a>
</button>
</div>
</div>
</section>
<section class="about">
<div class="container">
<div class="row">
<div class="col about-content">
<h2 class="heading">About our fit <br>family</h2>
<p class="para-line white">
Astraeus was founded in 2001 by a husband and wife team, Bobby and Dora Graff. Since then, we have expanded to over 115 locations nationwide!
</p>
<button class="btn-link">
<a href="#">Learn more</a>
</button>
</div>
<div class="col about-img">
<img src="img/about.png" alt="About image" class="aboutImg">
</div>
</div>
</div>
</section>
<section class="offer">
<div class="container">
<h2 class="heading">What we offer</h2>
<p class="sub-heading white">
We're committed to bringing you the best workout experience.
</p>
<div class="row">
<div class="col">
<div class="offer-card offer-tour">
<h2 class="offer-name">
Tour our gym
</h2>
</div>
</div>
<div class="col">
<div class="offer-card offer-classes">
<h2 class="offer-name">
Check out our <br>
group classes
</h2>
</div>
</div>
<div class="col">
<div class="offer-card offer-training">
<h2 class="offer-name">
Ask about <br>
personal training
</h2>
</div>
</div>
</div>
</div>
</section>
<section class="testimonial">
<div class="container">
<h2 class="heading">
What they say
</h2>
<div class="row">
<div class="col">
<div class="review-card">
<div class="author-pic author-pic-a"></div>
<div class="review-content">
<p class="review para-line">
Testimonials are short quotes from people who love your brand. It's a great way to convince customers to try your services.
</p>
<p class="author-name">Donna Bleaker, 31</p>
</div>
</div>
</div>
<div class="col">
<div class="review-card">
<div class="author-pic author-pic-b"></div>
<div class="review-content">
<p class="review para-line">
Testimonials are short quotes from people who love your brand. It's a great way to convince customers to try your services.
</p>
<p class="author-name">Lauren Cross, 28</p>
</div>
</div>
</div>
<div class="col">
<div class="review-card">
<div class="author-pic author-pic-c"></div>
<div class="review-content">
<p class="review para-line">
Testimonials are short quotes from people who love your brand. It's a great way to convince customers to try your services.
</p>
<p class="author-name">Thomas Xue, 44</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer-widget">
<div class="container">
<h2 class="heading">
Get in touch <br>
today
</h2>
</div>
</footer>
<footer class="footer-bottom">
<div class="container">
<div class="row">
<div class="col">
<div class="address">
<h2 class="contact-heading">
Mailing address
</h2>
<p class="contact-para-line">
123 Jogeshwari, Mum - 60
</p>
</div>
</div>
<div class="col">
<div class="mail">
<h2 class="contact-heading">
Email address
</h2>
<p class="contact-para-line">
me@atulcodex.com
</p>
</div>
</div>
<div class="col">
<div class="number">
<h2 class="contact-heading">
Phone number
</h2>
<p class="contact-para-line">
(+91) 98765 43210
</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>