-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
26 lines (26 loc) · 979 Bytes
/
404.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
<!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>Oooopps...</h1>
<p>This page couldn't be found. Click the link below to go to the home page.</p>
<p><a class="btn btn-primary btn-lg" href="/" role="button">Homepage</a></p>
</div>
</div>
</body>
</html>