forked from DemiDC/BottleCatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.25 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
<!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">
<title>Document</title>
<script src="index.js"></script>
<link rel="stylesheet" href="css/styles.css">
<style>
*{
font-family: 'Helvetica',serif;
}
.container{
margin:2em;
}
.left-button{
float: left;
}
.right-button{
float: right;
}
</style>
</head>
<body>
<div class="container">
<h1>Bottle Catch</h1>
</div>
<div class="container">
<h2>Choose your own adventure<br>Try Not To Die.<br>The Gypsy has spoken.</h2>
</div>
<div class="container" id="video-container">
<iframe width="960" height="450" src="https://www.youtube.com/embed/ZwDvSS58WoU"></iframe>
</div>
<div class="container" id="button-area" style="width:960px">
<button style="height:30px" class="left-button" onclick="run(1)">
Try Going Back To Sleep
</button>
<button style="height:30px" class="right-button" onclick="run(4)">
Go To Saizeriya Anyways
</button>
</div>
</body>
</html>