-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
50 lines (40 loc) · 1.8 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/404.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Favicon -->
<link id='favicon' rel="shortcut icon" href="assets/images/favicon.png" type="image/x-png">
<title>Vous êtes perdu! Page introuvable</title>
</head>
<body oncontextmenu="return false">
<!-- 404 section start -->
<section class="page_404">
<div class="container">
<div class="wrapper">
<h1 class="text-center ">404</h1>
</div>
<div class="msg">
<h3>On dirait que vous êtes perdu</h3>
<p>La page que vous recherchez n'est pas disponible !</p>
<div class="backbtn">
<a href="./index.html" class="btn">
<i class="fas fa-arrow-left"></i>
<span>Revenir à la page d'accueil</span>
</a>
</div>
</div>
</div>
</section>
<!-- 404 section end -->
<!-- ==== ALL MAJOR JAVASCRIPT CDNS STARTS ==== -->
<!-- jquery cdn -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- ==== ALL MAJOR JAVASCRIPT CDNS ENDS ==== -->
<script src="assets/js/404.js"></script>
</body>
</html>