-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
45 lines (35 loc) · 1.08 KB
/
404.html
File metadata and controls
45 lines (35 loc) · 1.08 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
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>DebatikCenter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Overpass+Mono" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="../css/style.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/normalize.css">
<style type="text/css">
.content { position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-family: 'Helvetica', Arial, serif;
font-size: 14px;
text-align:center;
color:#eee;
}
h1{
font-size:1em;
}
</style>
<script src="../js/jquery-1.10.2.js"></script>
</head>
<body style="background-color: #555;">
<div class="content"><h1>404</h1><br>
<p>Page not found</p>
<br>
<p>Back to website <a href="https://debatikcenter.net" style="color:black;">click here</a>
</div>
</body>
</html>