-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FlappyPhone</title>
<style>
html, body {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
#output {
width: 100%;
height: 100%;
background: #000;
overflow: scroll;
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
color: #0f0;
font-weight: bold;
font-size: 16px;
}
#retry {
display: none;
width: 100px;
height: 40px;
background: #000;
border: 1px solid #0f0;
color: #0f0;
line-height: 40px;
text-align: center;
position: absolute;
left: 50%;
top: 50%;
margin-left: -50px;
margin-top: -20px;
text-decoration: none;
}
</style>
</head>
<body>
<div id="output"></div>
<a id="retry" href="#">try again</a>
<script src="main.js"></script>
</body>
</html>