generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
81 lines (60 loc) · 3.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Declare the encoding of document -->
<meta charset="UTF-8">
<!-- Set up support for older IE browsers -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the viewport to make website look good on all devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Define keywords for search engines: -->
<meta name="keywords" content="trivia, quiz, question, answer, quizzes, categories">
<!-- Define a description of your web page -->
<meta name="description" content="Trivia Quiz, have fun and enjoy our quizzes with different categories.">
<!-- Define the author of a page: -->
<meta name="author" content="">
<!-- Bootstrap CSS 4.6.0 - https://getbootstrap.com/docs/4.6/getting-started/introduction/ -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<!-- Main css -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="104x110" href="assets/images/favicon/apple-touch-icon.ico">
<link rel="icon" type="image/ico" sizes="61x64" href="assets/images/favicon/favicon-61x64.ico">
<link rel="icon" type="image/ico" sizes="46x48" href="assets/images/favicon/favicon.ico">
<link rel="icon" type="image/ico" sizes="31x32" href="assets/images/favicon/favicon-31x32.ico">
<title>Trivia Quiz</title>
</head>
<body>
<!-- Error section -->
<section id="error-section">
<div class="error-container-flex error-container--bg">
<div class="error-container-flex-child">
<div class="error-container-item-outer">
<div class="error-container-item-inner">
<div class="error-container-item">
<div class="error-container-content">
<h1 class="error-title bounce-in">Oh no!</h1>
</div>
<div class="error-container-content">
<h2 class="error-subtitle bounce-in">We could not find the page</h2>
</div>
<div class="error-container-content">
<a href="index.html" role="button" class="btn btn--error bounce-in btn--cta-quiz btn--misty-rose" aria-label="Home Page">Go Home</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /.End Error section -->
<!-- jQuery and Bootstrap JS - https://getbootstrap.com/docs/4.6/getting-started/introduction/ -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
</body>
</html>