-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.79 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
51
52
53
54
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- <script type="text/javascript" src="../lib/matter.js"/></script> -->
<link href="https://fonts.googleapis.com/css?family=Bangers" rel="stylesheet">
<link rel="stylesheet" href="./assets/stylesheets/basic.css">
<link rel="stylesheet" href="./assets/stylesheets/levels.css">
<link rel="stylesheet" href="./assets/stylesheets/my_info.css">
<link rel="shortcut icon" type="image/png" href="./assets/icons/favicon.png"/>
<title>Angry Circle</title>
</head>
<body id="core">
<div id='main-container'>
<div id="start" class="start-header">
<h1>Angry Circles</h1>
<span id="instructions">Sling the ball and hit the stack of cubes to start the game.</span>
</div>
<div id="level-info-container">
<h2 id="level-info" class="base">Test</h2>
</div>
<div id="game-info" class="hide">
<div id="tries-container">
<h3>Tries: </h3><h3 id="tries-count">-1</h3>
</div>
<button id="reset" type="button" name="button">
<img src="assets/icons/reset.png">
<!-- <span>Restart</span> -->
</button>
<div id="level-number-container">
<h3>Level: </h3><h3 id="level-count">-1</h3>
</div>
</div>
</div>
<canvas id="canvas" width="1400" height="700">
</canvas>
<div id="my-info" class="">
<h3>Created By: Keith Francis Balde</h3>
<a href="https://www.github.com/keithfrancisb">
<img src="assets/icons/GitHub-Mark-64px.png">
</a>
<a href="https://www.linkedin.com/in/keithfrancisb">
<img src="assets/icons/In-2CRev-66px-R.png">
</a>
</div>
</body>
<script type="text/javascript" src="./dist/main.js"></script>
</html>