-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path404.html
33 lines (26 loc) · 965 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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<link rel="stylesheet" href="css/404.css" />
<title>Trapple - Page Not Found</title>
<link rel = "icon" href ="images/logo1.png"
type = "image/x-icon">
<script>
function goBack(){
window.history.back()
}
</script>
<body style="background-color:#ffbb99;">
<div class="container">
<h2><b>Oops! Page Not Found</b></h2>
<h1>404</h1>
<p><b>Can't find the page you're looking for!</b></p>
<button onclick="goBack()" class="backbtn">Back</button>
</div>
</body>
</head>
</html>