-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
41 lines (41 loc) · 1.07 KB
/
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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erreur 404</title>
<style>
body {
font-family: 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #36393f;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #fff;
text-align: center;
}
.error-container {
background-color: #2c2f33;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
max-width: 400px;
}
.error-container h1 {
font-size: 24px;
margin-bottom: 10px;
}
.error-container p {
font-size: 16px;
}
</style>
</head>
<body>
<div class="error-container">
<h1>Erreur 404</h1>
<p>Veuillez réessayer ultérieurement.</p>
</div>
</body>
</html>