-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (42 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<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>
<!-- Grid 2 x 2 -->
<div class="container-fluid">
<div class="row">
<div class="col">
<h1 class="h1 marginAuto">Spaghetti Dinner!</h1>
<h2 class="h2 marginAuto">Gotta go home for dinner, the pasta is getting cold...</h2>
</div>
</div>
<div class="row">
<div class="col">
<a class="marginAuto" href="play.html?c=pirate"><img class="img-fluid" src="images/pirate.png"></a>
</div>
<div class="col">
<a class="marginAuto" href="play.html?c=lumberjack"><img class="img-fluid" src="images/lumberjack.png"></a>
</div>
</div>
</div>
</body>
</html>