-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-club.html
87 lines (74 loc) · 2.89 KB
/
index-club.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
<!DOCTYPE html>
<!-- This website tempate was created by: Carlos Theran -->
<html lang="en">
<head>
<title>Forward Fitness Club</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<link href="https://fonts.googleapis.com/css2?family=Francois+One&family=Roboto:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<header>
<a href="index-club.html"> <img src="images/forward-fitness-logo.png"> </a>
</header>
<nav>
<ul>
<li><a href="index-club.html"> Home</a></li>
<li><a href="about.html"> About Us</a></li>
<li><a href="classes.html"> Classes</a></li>
<li><a href="nutrition.html"> Nutrition</a></li>
<li><a href="contact.html"> Contact Us</a></li>
</ul>
</nav>
<!--Hero Image-->
<div id="hero" class="tablet-desktop">
<img src="images/hero-image.jpg" alt="left arm extended">
</div>
<!--Use the main area to add the main content of the webpage -->
<main>
<div class="mobile">
<p>
Welcome to forward Fitnnes Club. Our mission is to help our
client meet their fitnness and nutrition goals.
</p>
<h3>FREE one-week Trial Membership!</h3>
<p>Call Us Today to Get Started</p>
<p class="tel-link"><a href="tel:8145559608">(814)-555-9608</a></p>
<h4>Fitness Club Hours:</h4>
<ul class="hours">
<li>Mon - Thu: 6:00 am - 6:00 pm</li>
<li>Friday: 6:00 am - 4:00 pm</li>
<li>Saturday: 8:00 am - 6:00 pm</li>
<li>Sunday: Closed</li>
</ul>
</div>
<div class="tablet-desktop">
<p>
Welcome to forward Fitnnes Club. Our mission is to help our
client meet their fitnness and nutrition goals.
</p>
<p>
If you have struggled with getting healthy and need the motivation
and resources to make a healthy lifestyle change, contact us today.
Our facility includes state-of-the-art equipment, convenient group
training classes, and nutrition tips and information to keep you
healthy.
</p>
<p>
We provide a FREE one-week membership so you can experience the benefits
of our equipment and facility. This one-week trial gives you complete
access to our equipment, training classes, and nutrition planning.
Contact us today to <span class="action">sstart your free trial!</span>
</p>
</div>
</main>
<!-- Use the footer are to add web page footer content -->
<footer>
<p>© Copyright 2022. All Right Reserved</p>
<p><a href="mailto:[email protected]"> [email protected]</a> </p>
</footer>
</div>
</body>
</html>