-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
40 lines (33 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="">
<link rel="shortcut icon" href="img/613768a7bc0f8af4e813495c03389797d140c03e593db8607b03f1e4.png">
<title>Breakout Game | Brick Breaking Game</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> -->
<link href='https://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="heading container">
<h2>Breakout Game</h2>
<!-- <p>by Sarthak Agarwal</p> -->
<hr>
<p>Use Arrow Keys or Mouse to play.</p>
</div>
<canvas id="myCanvas"></canvas>
<div class="container playbtn">
<div class="row text-center">
<button type="button" class="btn btn-lg btn-primary" id="start" autofocus>Start / Resume</button>
<button type="button" class="btn btn-lg btn-danger hidden" id="pause">Pause</button>
</div>
</div>
<footer>Made by <span class="name">Sarthak</span> with <span class="heart">♥</span></footer>
<script src="js/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>