-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
executable file
·31 lines (28 loc) · 1.49 KB
/
game.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
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-3435348-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-34353485-2');
</script>
<title>Play CORONA - Can you survive?</title>
<meta name="description" content="Game with the aim to survive among the red balls. After every 5 seconds a new red ball gets produced and you, represented by green ball, will have to try to save green ball from colliding walls or red balls.">
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link href="css/master.css" rel="stylesheet" />
</head>
<body>
<canvas id="canvas" class="col-sm-12 col-md-12"></canvas><br />
<label for="score" id="score">Score: 0</label>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<div class="addthis_inline_share_toolbox_e9b4" style="margin-top:5px"></div>
<script src="js/swipe.js" charset="utf-8"></script>
<script src="js/main.js" charset="utf-8"></script>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5e87f6d76adb60a4"></script>
</body>
</html>