-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
24 lines (22 loc) · 901 Bytes
/
404.html
File metadata and controls
24 lines (22 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 - Page non trouvee</title>
<meta name="description" content="La page demandee est introuvable. Retournez a l'accueil du portfolio." />
<link rel="canonical" href="https://elouali.github.io/404.html" />
<style>
body { margin:0; min-height:100vh; display:grid; place-items:center; font-family:Arial,sans-serif; background:#0b1220; color:#e2e8f0; }
.card { max-width:640px; padding:28px; border:1px solid #334155; border-radius:14px; background:#111827; text-align:center; }
a { color:#38bdf8; text-decoration:none; font-weight:600; }
</style>
</head>
<body>
<div class="card">
<h1>404</h1>
<p>La page demandee est introuvable.</p>
<p><a href="/pages/index.html">Retour a l'accueil</a></p>
</div>
</body>
</html>