-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-over.html
64 lines (47 loc) · 2.13 KB
/
game-over.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
<!DOCTYPE html>
<html>
<head>
<!-- redirects after 10 seconds -->
<meta http-equiv="refresh" content="5;url=index.html?c=pirate" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="icon" type="image/png" href="images/favicon.png">
<title>Spaghetti Dinner</title>
<meta name="description" content="Spaghetti Dinner: A GGJ2019 game">
<meta name="author" content="github.com/mapto; github.com/ElectronicElement">
<meta name="keywords" content="Home, Spaghetti, Monster, Labyrinth" />
<meta name="description" content="Spaghetti Dinner: A GGJ2019 game" /> <!-- limit of 156 characters, apparently because of Google -->
<!-- Open Graph -->
<meta property="og:title" content="spaghetti-dinner" /> <!-- duplicate of title -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/mapto/spaghetti-dinner" />
<!--<meta property="og:image" content="images/logo.png" />--> <!-- higher resolution than favicon -->
<meta property="og:description" content="Spaghetti Dinner: A GGJ2019 game" /> <!-- duplicate of meta description -->
<!-- Boot Strap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col">
<a href="index.html">
<img class="img-fluid" src="images/monster.png">
</a>
</div>
</div>
<div class="row">
<div class="col">
<h1 class="h1 marginAuto">GAME OVER!</h1>
</div>
</div>
<div class="row">
<div class="col">
<h4 class="h1 marginAuto">Game will automatically start again in 5 seconds.</h1>
</div>
</div>
</div>
</div>
</body>
</html>