-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (104 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Trainer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<meta name="description" content="personal trainer landing page" />
<link href="styles.css" rel="stylesheet" type="text/css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Archivo&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
defer
></script>
</head>
<body>
<main>
<header>
<h1>
BECOME<br />A WORLD CLASS<br /><span class="red">ATHLETE.</span>
</h1>
<p>Start your fitness journey today.</p>
<div class="decoration"></div><img src="images/header_img.avif" alt="woman working out" />
</header>
<section class="about">
<h2>Are you tired of not achievenig your fitness goals?</h2>
<p><strong>Do you always feel like you are giving your best, but not seeing the results?</strong><br><br>
You’ve tried “confusing your muscles” with different workout routines,fixing your diet, taking fat burners, but no matter what you do, nothing seems to work.
<br>
<br>
The sad truth is that even after months of consistently working out, most people have nothing to show for it.
<br><br>
<strong>We can help you get out of the rut.</strong>
</p>
</section>
<section class="training-type">
<h2>TRAIN WITH US</h2>
<div class="cards">
<div class="card card-1">
<article>
<h3>WEIGHTLIFTING</h3>
<p class="hidden">
Sport of lifting a weighted barbell over the head, using the
snatch and clean-and-jerk styles of lifts
</p>
</article>
</div>
<div class="card card-2">
<article>
<h3>POWERLIFTING</h3>
<p class="hidden">
Strength sport that consists of three attempts at maximal weight
on three lifts: squat, bench press, and deadlift
</p>
</article>
</div>
<div class="card card-3">
<article>
<h3>CROSSFIT</h3>
<p class="hidden">
Strength and conditioning workout that is made up of functional
movement performed at a high intensity level
</p>
</article>
</div>
</div>
</section>
<section class="client_review">
<h2>TESTIMONIALS</h2>
<div class="grid-container">
<div class="client">
<h3>Derren Simons</h3>
<hr>
<p>Simply, with their help I achieved my goal of putting on weight, one which I have struggled with for years. With their help I have gained 13kg+ and my strength has more than doubled. They really helped me by giving me the tools to grow, such as diet and training regimes.</p>
</div>
<div class="client">
<h3>Joanna West</h3>
<hr>
<p>Each of my training sessions is challenging and rewarding. I would have no hesitation in recommending them as your personal trainers if you want to achieve your fitness and health goals.</p>
</div>
<div class="client">
<h3>Jamie Smith</h3>
<hr>
<p>They are focused on helping me achieve my goals and make every session challenging (& somehow fun). My fitness has increased noticeably and I’ve seen improvements in my ability to complete more sit ups / core exercises, lift progressively heavier weights & generally push myself harder throughout each session. I find I actually look forward to my workouts.</p>
</div>
</div>
</section>
</main>
<hr>
<footer>
<p>Made with love by <a href="https://github.com/veronika-simic/" target="_blank">vera</a></p>
</footer>
</body>
</html>