-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
58 lines (54 loc) · 1.67 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
58
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta property="og:locale" content="en-US">
<meta property="og:site_name" content="Trippin on Tubs">
<meta property="og:title" content="Trippin on Tubs">
<meta name="description" content="Main webpage for Trippin on Tubs mobile game.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<title>Trippin on Tubs</title>
<style>
.container {
display: flex;
justify-content: center;
}
.main {
max-width: 1200px;
color: #494e52;
font-family: "Helvetica Neue","Lucida Grande",Arial,sans-serif;
font-size: 18px;
}
.body {
line-height: 1.5;
}
.head {
margin: 32px;
text-align: center;
font-size: 16px;
}
.logo {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="main">
<div class="head">
<img class="logo" src="walking_tub.gif" alt="Walking Tub">
</div>
<div class="body">
<p>
<a href="highscores.html">Scores</a> |
<a href="https://github.com/ebarlas/TrippinOnTubs">Code</a> |
<a href="mailto:elliotbarlas@gmail.com">Email</a> |
<a href="https://play.google.com/store/apps/details?id=com.trippinontubs&hl=en_US&gl=US">Android</a> |
<a href="https://apps.apple.com/us/app/trippin-on-tubs/id6449449388">iOS</a>
</p>
</div>
</div>
</div>
</body>
</html>