-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404Error.html
More file actions
36 lines (36 loc) · 854 Bytes
/
Copy path404Error.html
File metadata and controls
36 lines (36 loc) · 854 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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>404 Error | Erro 404</title>
<meta charset="UTF-8">
<link rel="icon" href="resources\HTML5.png"/>
<script type="text/javascript" src="js/JSTools.js"></script>
<style>
* {
text-align: center;
}
body {
background-color: #d7d7d7;
}
</style>
</head>
<body>
<h1>404 Error | Erro 404</h1>
<h3>Webpage Not Found | Página Não Encontrada</h3>
<p>Click on this button to back | Clique neste botão para voltar:</p>
<button id="backToIndex" onclick="backToIndex();">Back | Voltar</button>
<p id="count">10</p>
<script>
var count = 10;
setTimeout(next, 1000);
function next() {
count--;
element("count").innerHTML = count;
if (count == 0) {
backToIndex();
}
setTimeout(next,1000);
}
</script>
<!--</body>--></body>
</html>