-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
44 lines (42 loc) · 1.22 KB
/
404.html
File metadata and controls
44 lines (42 loc) · 1.22 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url=/">
<title>PlainDSP</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous" />
<style>
html,
body {
height: 100%;
background-color: #093c76;
}
@media (min-width: 992px) {
body {
background-image: url('background.svg');
background-repeat: no-repeat;
background-position: right top;
}
}
@media (max-width: 767.98px) {
.display-4 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container-fluid text-white text-center h-100">
<div class="row h-100 align-items-center">
<div class="col">
<div>
<img src="/hl2.svg" width="150" class="img-fluid m-3" />
<h1 class="display-4">
(⊙.⊙) <br/>
404 Page Non Trouvée
</h1>
</div>
</div>
</div>
</body>
</html>