-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body style="padding-top: 70px;">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="/">Node App</a>
<ul class="nav navbar-nav navbar-right">
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>The Homepage</h1>
<p>This is a jumbotron section where you can put information that you want to stand out!</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Section 1</h3>
<p>You can add sub information about your website here. Check the bootstrap docs to add to this page.</p>
</div>
<div class="col-md-4">
<h3>Section 2</h3>
<p>You can add sub information about your website here. Check the bootstrap docs to add to this page.</p>
</div>
<div class="col-md-4">
<h3>Section 3</h3>
<p>You can add sub information about your website here. Check the bootstrap docs to add to this page.</p>
</div>
</div>
</div>
</body>
</html>