-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (114 loc) · 4.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Peak Performance Gym</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/logo.png" type="images/png">
</head>
<body>
<header>
<div class="logo-container">
<img id="logo" src="images/logo.png" alt="Gym Logo">
Peak Performance Fitness
</div>
<nav class="navbar">
<ul id="navbar-list">
<li><a href="#hero" class="navbar_links">Join Us</a></li>
<li><a href="#offers" class="navbar_links">Other Offers</a></li>
<li><a href="#address" class="navbar_links">Location</a></li>
<li><a href="#motivation" class="navbar_links">Motivation</a></li>
<li><a href="#contact" class="navbar_links">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero" class="hero_sign_up">
<div class="hero_text_container">
<h2>Join us for a FREE First Traning</h2>
<p>Just bring your towel and sports clothing and join us for a free first training unit.</p>
<p>After your first training unit, you can decide if you want to sign up for your membership with us.</p>
<button class="hero_sign_up_button">Sign Up</button>
</div>
<figure>
<img id="gym_image" src="images/gym_image.jpg" alt="A picture of our facilities.">
</figure>
</section>
<section id="offers" class="other_gym_offers">
<h2>View Other Offers from Peak Performance Fitness</h2>
<div class="gym_offers_container">
<div id="first_offer" class="offer">
<img src="images/cross_traning.jpg" class="offer_image">
<h2>Cross Training</h2>
</div>
<div id="second_offer" class="offer">
<img src="images/group_training.jpg" class="offer_image">
<h2>Group Training</h2>
</div>
<div id="third_offer" class="offer">
<img src="images/diet_food.jpg" class="offer_image">
<h2>Diet Planing</h2>
</div>
<div id="fourth_offer" class="offer">
<img src="images/powerlifting.jpg" class="offer_image">
<h2>Powerlifting</h2>
</div>
</div>
</section>
<section id="motivation" class="motivation_quote">
<h2>Success is usually the culmination of controlling failure. The body achieves what the mind believes. The pain you feel today will be the strength you feel tomorrow. <br> Continuous effort, not strength or intelligence, is the key to unlocking our potential. <br> Fitness is not about being better than someone else. It's about being better than you used to be.</h2>
</section>
<section id="address" class="location">
<img id="map_icon" src="images/map_icon.png">
<div class="address">
<h1>Peak Performance Fitness</h1>
<h1>1234 Fit Avenue, Suite 500</h1>
<h2>Wellness City, CA 90210</h2>
<h3>United States</h3>
</div>
</section>
</main>
<footer>
<div class="main_footer_container">
<div class="about_us_section_container">
<h2>About</h2>
<a>Company</a>
<a>Expansion</a>
<a>Jobs</a>
<a>Press</a>
</div>
<div class="support_contact_container">
<h2>Contact</h2>
<a>Mail</a>
<a>Phone</a>
<a>Selfservice</a>
<a>Help</a>
</div>
<div class="meta_nav_footer_container">
<h2>General</h2>
<a>Data Collection</a>
<a>Cookie Policy</a>
<a>Compliance</a>
<a>Contract</a>
</div>
<div class="social_media_links_container">
<h2>Social Media</h2>
<div class="social_media_container">
<img src="images/instagram.png">
<a>Instagram</a>
</div>
<div class="social_media_container">
<img src="images/facebook.png">
<a>Facebook</a>
</div>
<div class="social_media_container">
<img src="images/youtube.png">
<a>YouTube</a>
</div>
</div>
</div>
<p>© 2024 Peak Performance Gym</p>
</footer>
</body>
</html>