-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default custom-nav" role="navigation">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="header-nav">
<ul class="nav navbar-nav">
<li><a href="index.html" class="activelink"></a></li>
<li><a href="stats.html">STATS</a></li>
<li><a href="stream.html">STREAM</a></li>
<li><a href="gallery.html">GALLERY</a></li>
</ul>
</div>
</div>
</nav>
<div class="home-content">
<div class="inner-home-content">
<p class="home-content-header headertop">This is my</p>
<p class="home-content-header">Rapid Design Prototype</p>
<span class="home-content-text">
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Etiam porta sem malesuada magna mollis euismod.
</span>
<div class="home-btn-container">
<button type="button" class="btn btn-default btn-home">CHECK IT OUT</button>
<span>or</span>
<a href="#">Just ignore it</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>