-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
50 lines (47 loc) · 1.98 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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simon Daguet-Kargl | Développeur Front-end - page non trouvée</title>
<meta name="description" content="page 404, page inexistante" />
<link rel="icon" href="images/emoji_u1f5a5_favicon.svg" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/project1.css" />
<link rel="stylesheet" href="css/queries-project1.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@700&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet" />
</head>
<body>
<header>
<nav>
<ul class="project-nav">
<li><a class="link" href="index.html">Revenir à l'accueil</a></li>
<li class="button-project"><a class="button button-project" href="index.html#discuss">Me contacter</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1 style="margin-bottom: 150px">La page cherchée n'existe pas</h1>
<a class="button" href="index.html">Revenez à l'accueil</a>
</section>
</main>
<footer>
<p>
© Simon Daguet-Kargl - <span class="date">2023</span><a class="legal-notices"
href="mentions-legales.html">Mentions Légales</a>
</p>
</footer>
<script>
document.querySelector(".date").textContent = new Date().getFullYear();
</script>
</body>
</html>