forked from soloanv/cmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
personal-training.html
87 lines (80 loc) · 3.78 KB
/
personal-training.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
<!-- Colorado Movement Company
File Name: personal-training.html
Developers: Vanessa Solano, Mario Zamora
Date Created: 11/03/2017
Last Modified: 12/06/2017 -->
<!DOCTYPE html>
<html>
<head>
<title>Personal Training</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div id="logo">
<img src="cmc-logo-header.jpg"/>
</div>
<div class="menu-wrap">
<nav class="primary-nav">
<ul class="primary-menu">
<li id="home"><a href="index.html">Home</a></li>
<li id="about" class="prim-menu"><a href="#">About</a>
<ul class="sub-menu">
<li id="our-story"><a href="ourStory.html">Our Story</a></li>
<li id="coaches-staff"><a href="coachesStaff.html">Coaches/Staff</a></li>
<li id="contact-directions"><a href="contactDirections.html">Contact/Directions</a></li>
</ul>
</li>
<li id="programs" class="prim-menu"><a href="#">Programs</a>
<ul>
<li id="youth-fitness"><a href="youth-fitness.html">Youth Fitness</a></li>
<li id="senior-fitness"><a href="senior-fitness.html">Senior Fitness</a></li>
<li id="general-fitness"><a href="general-fitness.html">General Fitness</a></li>
<li id="personal-training"><a href="personal-training.html">Personal Training</a></li>
<li id="yoga"><a href="yoga.html">Yoga</a></li>
</ul>
</li>
<li id="schedule" class="prim-menu"><a href="schedule.html">Schedule</a>
</li>
<li id="get-started"><a href="getStarted.html">Get Started</a></li>
<li id="more" class="prim-menu"><a href="#">More</a>
<ul class="sub-menu">
<li id="blog"><a href="blog.html">Blog</a></li>
<li id="social-media"><a href="socialMedia.html">Social Media</a></li>
<li id="contact"><a href="contact.html">Contact</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<div id="banner">
<img src="weights.jpg"/>
</div>
<h1 style="text-align:center">Programs</h1>
<div class="program-main">
<div id="personal-training">
<blockquote>
<h2>Personal Training</h2>
<h3>Personal Training (30-60 Minute Sessions):</h3>
<p>There are two different types of personal training services offered. A member of the gym can seek a monthly membership that consists of personal training three times a week. A needs assessment would be performed on the member to determine what their physical capabilities are and the needs of their body. Another member could seek personal training in an individual type session or sessions. Distinct types of personal training services offered are:</p>
<ul>
<li>Free Weight Training</li>
<li>Weight Lifting</li>
<li>Power Lifting</li>
<li>CrossFit</li>
</ul>
</blockquote>
</div>
</div>
</main>
<footer>
<p>728 West 9th. Street, Pueblo, CO 8100 // (719) 821-5352 // (262) 496-4012</p>
</footer>
</body>
</html>