-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
22 lines (22 loc) · 884 Bytes
/
Copy path404.html
File metadata and controls
22 lines (22 loc) · 884 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="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="BlackJack Game">
<meta name="keywords" content="Game, Javascript, BlackJack">
<meta name="author" content="Damien B.">
<!--We redirect to the main page of the game after 3 sec-->
<meta http-equiv="refresh" content="3; URL=index.html">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<title>Error 404</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<!--Heading-->
<div class="heading" id="heading">
<!--This content will show up if user is displaying an page does not exist-->
<div id="Message404"> You are lost. Please wait, we redirect you home!</div>
</div>
</body>
</html>