-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
44 lines (34 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!-- Font awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Imports Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<!-- Import CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Mang Gym</title>
</head>
<body>
<!-- Landing Page -->
<div class="vidWrapper">
<video class="landingVid " preload="auto" src="img/trainingvid.mov" autoplay muted loop playsinline>
</video>
</div>
<!-- Wrapper Container -->
<div class="wrapper">
<h2>WELCOME TO <span style="color: yellow">MANG GYM</span></h2>
<p class="quote">“THINKk BIG AND DON'T LISTEN TO PEOPLE WHO TELL YOU IT CAN'T BE DONE. LIFE'S TOO SHORT TO THINK SMALL.”</p><footer>-- BY TIM FERRISS</footer>
<a href="home.html" class="btn1">JOIN NOW!</a>
</div>
<!-- Import Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Font Awesome CDN -->
<script src="https://use.fontawesome.com/5743362e56.js"></script>
<!-- Import Bootstrap Javascript -->
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>