-
Notifications
You must be signed in to change notification settings - Fork 1
/
instructors.html
76 lines (74 loc) · 5.75 KB
/
instructors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Instructors</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet">
<link href="./css/style-instructors.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<header>
<nav class="navbar navbar-expand-lg bg-dark navbar-dark">
<a href="index.html"> <img src="./images/logo.png" alt="logo" class="logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#topNavbar"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="topNavbar">
<ul class="navbar-nav">
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item active"><a href="instructors.html" class="nav-link">Instructors</a></li>
<li class="nav-item"><a href="membership.html" class="nav-link">Membership</a></li>
<li class="nav-item"><a href="classes.html" class="nav-link">Classes</a></li>
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="instructor">
<div class="anders"></div>
<h1>Anders Holm</h1>
<p>Hi, my name is Anders and I am a professional fitness instructor and bodybuilder with a 7-year experience. I love teaching people from my experience and to guide them on their path to their dream body. Hard work always pays off and I believe that with the proper training everyone can reach their desired shape. Besides fitness, I also have an education in healthy lifestyle, so under my supervision you will not only learn the correct exercises for your body type, but we will also discuss meal plans for a balanced life.</p>
<p>Don’t hesitate to <a href="mailto:[email protected]" class="instructor-contact">contact me</a>.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="instructor">
<div class="lucas"></div>
<h1>Lucas Saldanha</h1>
<p>Hello, I am Lucas and I have a passion for fitness. I come from Brazil and there is where my education started. I have been working in this field for 5 years now and I have been a VIAFit instructor for 3 years. I have learned to mix the Brazilian training style with the Danish training values, so my classes are never the same. I value the fact that the gym keeps close contact with its members and during my time here I have come to appreciate the importance of the relationship between instructor and member.</p>
<p>I am always happy to hear form you, so if you have any questions regarding the classes, do not hesitate to <a href="mailto:[email protected]" class="instructor-contact">contact me</a>.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="instructor">
<div class="dimitrian"></div>
<h1>Dimitrian Cebotaru</h1>
<p>Hi everyone, my name is Dimitrian and if you join our gym and my classes you will not be disappointed. I started training with VIAFit 6 years ago and because I appreciated the passion and dedication of the instructors, I became one. My experience was formed in this small gym, so I have a proper knowledge of all the equipment and classes we provide. During my time here I have seen how members shape their desired body through the guidance of the instructors and I believe that everyone can get in shape. </p>
<p><a href="mailto:[email protected]" class="instructor-contact">Contact me</a> if you have any questions. I always look forward on hearing from you. </p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="instructor">
<div class="daniel"></div>
<h1>Daniel Railean</h1>
<p>My name is Daniel. I am one of the instructors here. I have a 3 years’ experience in fitness and bodybuilding, and I look forward on seeing you in the class. I teach in most of the classes, but I have a passion for high intensity training. I believe that is more to fitness than just reshaping your body. It’s also coordinating the breathing with the movement in order to build a healthy and strong heart and a better blood circulation. During my classes you will learn how to strengthen your body and change your meal plan for a healthy lifestyle. </p>
<p>If you have any questions, please <a href="mailto:[email protected]" class="instructor-contact">write</a>.</p>
</div>
</div>
</div>
</div>
</header>
<br>
<footer class="footer">
<p>© All rights reserved to Group 7</p>
<p> Campus Horsens Chr. M. Østergaardsvej 4 8700 Horsens</p>
<script src="https://kit.fontawesome.com/02f649f51c.js" crossorigin="anonymous"></script>
<p>Check us on Github</p>
<a href="https://github.com/SEP-VIA-S20/RWD-ASSIGNMENT1" target="_blank"> <i class="fab fa-github"></i></a>
</footer>
</html>