-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
40 lines (37 loc) · 1.31 KB
/
404.html
File metadata and controls
40 lines (37 loc) · 1.31 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
<!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">
<meta name="description" content="Todo List Manager">
<meta name="author" content="Mohammad Reza Ebrahimi">
<title>ToDo List - Page Not Found</title>
<link rel="stylesheet" href="assets/css/compiled css/header_sytle.css">
<link rel="stylesheet" href="assets/css/compiled css/404_style.css">
<script src="https://code.iconify.design/2/2.0.3/iconify.min.js"></script>
</head>
<body>
<div class="container header">
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="todos.html?page=1&limit=10">Todos</a></li>
</ul>
</nav>
</header>
</div>
<div class="container">
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>4<span>0</span>4</h1>
</div>
<p>The page you are looking for might have been removed had its name changed or is temporarily unavailable.</p>
<a href="index.html">home page</a>
</div>
</div>
</div>
</body>
</html>