-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
49 lines (47 loc) · 1.47 KB
/
error.html
File metadata and controls
49 lines (47 loc) · 1.47 KB
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
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<header>
<nav
class="navbar navbar-expand navbar-dark bg-dark"
aria-label="Second navbar example"
>
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="/logo.png" alt="logo" />
</a>
<div class="collapse navbar-collapse" id="navbarsExample02">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/message.html">Send message</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="p-3 pb-md-4 mx-auto text-center">
<h1 class="display-4 fw-normal">404</h1>
<p class="fs-5 text-muted">
Not Found
</p>
</div>
</header>
</body>
</html>