-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstage1.html
38 lines (36 loc) · 1.37 KB
/
stage1.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/index.js"></script>
<title>Shoot The Ball</title>
</head>
<body>
<br><div align="center"><p id="counter"></p></div>
<p id="verygood"></p>
<body onload="coinFlip()">
<body onload="work()">
<br><div align="center"><p id="flip"></p></div>
<div align="center"><a href="index.html" id="link2">Go To Home</a></div>
<div id="total" align="center">
<div id="pinkcircle"></div>
<div id="yellowcircle"></div>
<div id="bluecircle"></div>
<div id="greencircle"></div>
<div id="redcircle"></div>
<div id="pinksquare"></div>
<div id="yellowsquare"></div>
<div id="bluesquare"></div>
<div id="greensquare"></div>
<div id="redsquare"></div>
<div id="highscore"></div>
</div>
</body>
</html>