-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplans.html
119 lines (112 loc) · 5.12 KB
/
plans.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VIGOR FITNESS</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/254aac26c0.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- navbar selection -->
<nav class="navbar">
<a href="index.html" class="navbar_logo">VIGOR</a>
<div class="navbar_toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="navbar_menu">
<a href="index.html" class="navbar_link">Home</a>
<a href="services.html" class="navbar_link">Services</a>
<a href="plans.html" class="navbar_link">Plans</a>
<a href="trainers.html" class="navbar_link">Trainers</a>
</div>
</nav>
<!-- Member Section -->
<div class="memberships">
<h1 class="animate-membership">View our plans</h1>
<p class="membership_desc animate-membership">Get Started today and recieve 25% off your first month</p>
<div class="membership_wrapper">
<div class="membership_card animate-card">
<div class="membership_title">
<i class="fas fa-dumbbell card-icon"></i>
<h3>Starter</h3>
</div>
<div class="membership_perks">
<p>Get Access to the entire gym</p>
<p>$100 per month</p>
</div>
<a href="index.html" class="button">Sign up</a>
</div>
<div class="membership_card animate-card">
<div class="membership_title">
<i class="fas fa-bicycle card-icon"></i>
<h3>Silver</h3>
</div>
<div class="membership_perks">
<p>Get Access to the entire gym</p>
<p>Group Fitness Classes</p>
<p>$150 per month</p>
</div>
<a href="index.html" class="button">Sign up</a>
</div>
<div class="membership_card animate-card">
<div class="membership_title">
<i class="fas fa-fist-raised card-icon"></i>
<h3>Gold</h3>
</div>
<div class="membership_perks">
<p>Get Access to the entire gym</p>
<p>Group Fitness Classes</p>
<p>Private Personal Training</p>
<p>$200 per month</p>
</div>
<a href="index.html" class="button">Sign up</a>
</div>
</div>
</div>
<!-- Footer Section -->
<div class="footer">
<div class="footer_wrapper">
<div class="footer_desc">
<h1>VIGOR FITNESS</h1>
<p>Luxury fitness gym located in downtown L.A.</p>
<p id="phone">323 - 122 - 6465</p>
</div>
<div class="footer_links">
<h2 class="footer_title">Contact Us</h2>
<a href="services.html" class="footer_link">Contact</a>
<a href="services.html" class="footer_link">Support</a>
<a href="services.html" class="footer_link">Sponsorships</a>
</div>
</div>
<div class="footer_wrapper">
<div class="footer_links">
<h2 class="footer_title">Memberships</h2>
<a href="plans.html" class="footer_link">Pricing</a>
<a href="plans.html" class="footer_link">Plans</a>
<a href="index.html" class="footer_link">FAQ</a>
</div>
<div class="footer_links">
<h2 class="footer_title">Social Media</h2>
<a href="https://www.instagram.com/" class="footer_link icon-footer"><i
class="fab fa-instagram-square"></i></a>
<a href="https://www.facebook.com/" class="footer_link icon-footer"><i
class="fab fa-facebook-square"></i></a>
<a href="https://www.youtube.com/" class="footer_link icon-footer"><i
class="fab fa-youtube-square"></i></a>
<a href="https://www.twitter.com/" class="footer_link icon-footer"><i
class="fab fa-twitter-square"></i></a>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.1/ScrollTrigger.min.js"></script>
<script src="app.js"></script>
</body>
</html>