-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagenotfound1.html
41 lines (35 loc) · 1.32 KB
/
pagenotfound1.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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="pagenotfound.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=\, initial-scale=1.0">
<title>404 Page Not Found</title>
</head>
<body>
<div style="height: 42px">
<h1>404 Page
<span onclick="notClick()">Not</span> Found
<span id="cross"style="position: static; transform: scale(.08); top: 0; left: 0; margin-top: -60px; margin-left: 45px; display: none; margin-bottom: 0px; ">
<img src="keyboard/cross.png" alt="strike out">
</span>
</h1>
</div>
<p >Sorry, the page you are looking for could not be found.</p>
<p>Please try again later, or <a href="index.html">return to the homepage</a>.</p>
<div>
<img onclick="onClick()" src="keyboard/tulip.png" alt="tulip"
style="position: fixed; bottom:0; left: 0; margin-left: -200px; margin-bottom: -329px; transform: scale(.2);"
</div>
</body>
<script>
function onClick() {
document.getElementById('cross').style.display = "block";
}
function notClick(){
document.getElementById('cross').style.display = "block";
window.location.href = "savechanges.html";
}
</script>
</html>