generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
171 lines (125 loc) · 5.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="'desciption" content="Mobile personal training services in Basel, Switzerland">
<meta name="keywords"
content="personal training, weight loss, strength training, endurance, toning up, painfree movement, home training, lifequality, getting into shape, functional training, coach, coaching, motivation, lean body, sculptured body, fat loss, muscle gain, Basel, Basel-city, Basel-stadt, Basel-landschaft, Allschwil, Münchenstein, Binningen">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Title -->
<title>Mobile Personal Training Services</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<body>
<header>
<a href="index.html">
<h1 id="logo">Mobile Personal Training Basel</h1>
</a>
<nav>
<ul id="menu">
<li>
<a href="contact.html">Contact Form</a>
</li>
<li>
<a href="training.html">Training</a>
</li>
<li>
<a href="index.html" class="active">Home</a>
</li>
</ul>
</nav>
</header>
<section id="hero-outer">
<div id="hero-image"></div>
<div id="cover-text">
<h2>Customised training sessions delivered to your home</h2>
</div>
</section>
<section id="trainer-ethos">
<h2 id="welcome">Who am I?</h2>
<div id="left-about">
<div class="left-about-heading">
<h2>Pesrsonal Trainer <i class="fa-solid fa-dumbbell"></i></h2>
<hr>
<p>I am a certified Personal Trainer and Weight Loss Coach. Moved from London with 10+ years experience
my
goal is to make people stronger, healthier and happier both online and on location.
</p>
</div>
<div class="left-about-heading">
<h2>Weight Loss Coach <i class="fa-solid fa-weight-scale"></i></h2>
<hr>
<p>
I worked with Louise Parker, whose method is an Award-Winning scientifically proven approach that
overhauls your lifestyle and gives you results you’ll love. <a href="https://theparkerpractice.com/"
target="_blank">Visit</a> Louise Parker to find out more.
</p>
</div>
</div>
<div id="right-about">
<div class="right-about-heading">
<div>
<h2>Certifications <i class="fa-solid fa-certificate"></i> </h2>
<hr>
<ul>
<li>Physical Education Teacher</li>
<li>Personal Fitness Trainer</li>
<li>Core conditioning Specialist</li>
<li>Strength and conditioning foundations</li>
<li>TRX Instructor</li>
</ul>
</div>
</div>
</div>
<div id="center-about">
<div id="circle-container">
<div id="circle-cover-bg">
</div>
</div>
</div>
</section>
<h2 id="title">
What you can expect
</h2>
<section id="expect">
<div>
<h3>Tailored sessions to YOUR needs</h3>
</div>
<div>
<h3>Flexible Training Times</h3>
</div>
<div>
<h3>Better Quality of Life</h3>
</div>
<div>
<h3>Mental Wellbeing</h3>
</div>
<div>
<h3>Improved Body Functions</h3>
</div>
</section>
<footer>
<ul class="social-networks">
<li>
<a href="https://www.youtube.com/@rayptraining3531" target="_blank" rel="noopener"
aria-label="visit my Youtube page (opens in a new tab)"><i class="fa-brands fa-youtube"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/public-profile/settings?trk=d_flagship3_profile_self_view_public_profile"
target="_blank" rel="noopener" aria-label="visit my Linkedin page (opens in a new tab)"><i
class="fa-brands fa-linkedin"></i></a>
</li>
<li>
<a href="https://www.facebook.com/profile.php?id=100064050696795" target="_blank" rel="noopener"
aria-label="visit my Facebook page (opens in a new tab)"><i class="fa-brands fa-facebook"></i></a>
</li>
</ul>
</footer>
<!--font awesome script-->
<script src="https://kit.fontawesome.com/a11c36c394.js" crossorigin="anonymous"></script>
</body>
</html>