-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
80 lines (73 loc) · 2.28 KB
/
404.html
File metadata and controls
80 lines (73 loc) · 2.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page non trouvée - Ma Boutique</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
.error-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
text-align: center;
padding: 0 20px;
}
.error-code {
font-size: 8rem;
font-weight: bold;
color: var(--primary-color);
margin: 0;
line-height: 1;
}
.error-message {
font-size: 2rem;
margin: 1rem 0 2rem;
color: var(--text-color);
}
.error-description {
color: var(--light-text);
margin-bottom: 3rem;
max-width: 600px;
}
.home-link {
display: inline-block;
padding: 12px 30px;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid var(--primary-color);
}
.home-link:hover {
background-color: transparent;
color: var(--primary-color);
}
@media (max-width: 768px) {
.error-code {
font-size: 6rem;
}
.error-message {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="error-container">
<h1 class="error-code">404</h1>
<h2 class="error-message">Oups ! Page non trouvée</h2>
<p class="error-description">
Désolé, la page que vous recherchez semble introuvable. Elle a peut-être été déplacée, supprimée ou n'a jamais existé.
</p>
<a href="index.html" class="home-link">
<i class="fas fa-home"></i> Retour à l'accueil
</a>
</div>
</body>
</html>