-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (88 loc) · 4.76 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Fit Up</title>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-9ralMzdK1QYsk4yBY680hmsb4/hJ98xK3w0TIaJ3ll4POWpWUYaA2bRjGGujGT8w" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,400i,700|Titillium+Web:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html"><img src="images/logo.svg" alt="Fit Up logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#about">About<span class="sr-only"></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
User
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="#">Profile</a>
<a class="dropdown-item" href="#">Settings</a>
</div>
</li>
</ul>
</div>
</nav>
<div class="jumbotron jumbotron-fluid home-hero">
<div class="container hero-body">
<h1 class="display-4">Level up your fitness!</h1>
<a href="#" class="btn btn-secondary btn-lg hero-button" role="button" aria-pressed="true">Log in</a><br>
<a href="new_acct.html" class="new-user">New user? Click here!</a>
</div>
</div>
<section class="about" id="about">
<div class="container">
<div class="row">
<div class="col-md-4">
<i class="far fa-dumbbell"></i>
<h4 class="contact-head">Improve Mobility</h4>
<p>Help you to increase your strength, coordination, flexibility and body awareness.</p>
</div>
<div class="col-md-4">
<i class="far fa-weight"></i>
<h4 class="contact-head">Lose Body Fat</h4>
<p>Help you create healthy habits to maintain lifelong changes.</p>
</div>
<div class="col-md-4">
<i class="far fa-spa"></i>
<h4 class="contact-head">Live a Fit Life</h4>
<p>Help you create lifelong change. This is not just a fad.</p>
</div>
</div>
</div>
</section>
<footer class="contact" id="contact">
<div class="container">
<div class="row">
<div class="col-md-6">
<h4 class="contact-head">Disclaimer</h4>
<p>Consult with your physician before starting any fitness or mobility program. Any advice in this application should not be a substitute to advice from a medical professional.</p>
</div>
<div class="col-md-4 offset-md-2">
<h4 class="contact-head">Contact</h4>
<p>700 Van Ness Ave<br>
Fresno, CA 93721</p>
<a class="github" href="https://github.com/geekwise-academy-no-instructor/fit-up"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="js/scripts.js"></script>
</body>
</html>