-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
38 lines (38 loc) · 1.35 KB
/
about.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
<!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="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>About Node App <small>All you need to know</small></h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<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-6">
<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>
</div>
</body>
</html>