-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
26 lines (23 loc) · 684 Bytes
/
Copy path404.html
File metadata and controls
26 lines (23 loc) · 684 Bytes
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>
<title>404 Page Not Found!</title>
<link rel="icon" href="./asset/favicon.png">
<link rel="stylesheet" href="./404.css">
<meta name="robots" content="noindex">
<meta name="Content-Security-Policy" content="default-src 'self' image-src 'self' script-src 'self' img-src 'self' font-src 'none'">
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<div class="box">
<div class="titleContainer">
<img src="./asset/sadIcon.png">
<h1>404 Page Not Found!</h1>
</div>
<hr>
<div class="content">
<h2>The page you are looking does not exist!</h2>
</div>
</div>
</body>
</html>