-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·29 lines (28 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>Flappy Cube</title>
<link type="text/css" rel="stylesheet" href="css/style.css"/>
</head>
<body>
<h2>Flappy Cube</h2>
<div class="gameZone">
<span class="score-box"><span class="score">0</span></span>
<div class="bird-box"><div class="bird"></div></div>
<div class="pipes"></div>
</div>
<div class="footer">
Design by <a href="https://weibo.com/p/1005051818850050/home?from=page_100505&mod=TAB&is_all=1#place" target="_blank">Yang</a><br>
Powered by <a href="http://jquery.com/" target="_blank">jQuery</a> and <a href="https://nebulas.io/cn/index.html" target="_blank">Nebulas</a>
</div>
<div class="poper">
<button class="top button" >TOP SCORE: 23</button>
<button class="start button">START</button>
<button class="upload button">UPLOAD</button>
</div>
<div class="frame"><span>Frames</span> <span class="frames">0</span></div>
<script src="js/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="js/nebPay.js" type="text/javascript"></script>
<script type="text/javascript" src="js/game.js"></script>
</body>
</html>