-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 1.38 KB
/
index.html
File metadata and controls
52 lines (44 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>hover</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta property="og:title" content="hoverON" />
<meta property="og:description" content="A simple hover game" />
<meta property="og:image" itemprop="image" content="https://github.com/nnboru/hover/raw/master/files/sad.png" />
<link rel=stylesheet href='hover.css' />
</head>
<body id=bdy>
<dialog id=dlgpop></dialog>
<dialog id=dlgre>
<div>Restart</div>
<div class='grid'>
<input type="button" value='No' id='butno' />
<input type="button" value='Yes' id='butyes' autofocus />
</div>
</dialog>
<dialog id=dlgover>
<div>GameOver</div>
<input type="button" value='Restart' id='butre' autofocus />
</div>
</dialog>
<div id=bar>
<div id='re'>
<div class="alt"><div><div class="marker"><div></div></div>restart</div></div>
</div>
<div id='level'></div>
<div id='timediv'></div>
</div>
<div class='hov start' id='start'>
<div class='tile'></div>
<div class='logo'><div>Help Me</div></div>
</div>
<div id=clone hidden>
<div class='hov'>
<div class='tile'></div>
</div>
</div>
<script src='hover.js'></script>
</body>
</html>