-
Notifications
You must be signed in to change notification settings - Fork 0
/
not_found.html
32 lines (31 loc) · 1.06 KB
/
not_found.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<link href="/styles.css" rel="stylesheet" type="text/css" media="all">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="nav-bar">
<div class="nav-menu">
<input type="checkbox" id="check">
<label for="check" class="checkbtn"><i class="fa fa-bars"></i></label>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/profile/">Profile</a></li>
<li><a href="/politics/">Politics</a></li>
<li><a href="/gaming/">Gaming</a></li>
<li><a href="/blog/">Blog</a></li>
</ul>
</div>
</nav>
<main>
<h1>Page Not Found</h1>
<hr>
<p class="not-found">The requested page was not found.</p>
</main>
</body>
</html>