-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 982 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 982 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Game Dev</title>
<meta charset="UTF-8" />
<style>
#gameScreen {
border: 1px solid black;
}
#titleScreen {
border: 2px solid black;
}
img {
display: none;
}
</style>
</head>
<body>
<img id="concrete_brick" src="/DevCom/assets/images/bricks/Concrete_Brick.png" />
<img id="broken_concrete" src="/DevCom/assets/images/bricks/Broken_Concrete.png" />
<img id="simple_brick" src="/DevCom/assets/images/bricks/Simple_Brick.png" />
<img id="heart" src="/DevCom/assets/images/heart.png" />
<img id="img_ball" src="/DevCom/assets/images/ball_purple.png" />
<img id="titleImage" src="/DevCom/assets/images/Brick_Smasher_Title.png" />
<canvas id="titleScreen" width="800" height="100"></canvas>
<br />
<canvas id="gameScreen" width="800" height="600"></canvas>
<script type = "module" src="src/index.js"></script>
</body>
</html>