generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
45 lines (33 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="colourful card memory game" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Jockey+One&family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>Tutti Frutti</title>
</head>
<body class="theme-colour">
<!-- home page -->
<div class="container-fluid" id="page-home">
<div class="row">
<div class="col-12">
<div class="d-flex flex-column justify-content-between home-menu">
<img alt="Tutti Frutti Game logo" class="m-auto d-block img-fluid" id="logo-home" src="assets/images/logo-red-plain.png">
<div class="heading-text text-center">Whoops!, something went wrong, it looks like you got lost.</div> <div class="heading-text text-center"> <a href="index.html">Click here</a> to return to the game </div>
</div>
</div>
</div>
</div> <!-- end of home page -->
<!-- code based on https://docs.github.com/en/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site -->
</body>
</html>