-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (26 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title> Game </title>
<link href="design.css" rel="stylesheet"></link>
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bungee+Outline" rel="stylesheet">
</head>
<body id="body">
<div id="container">
<div id="title"></div>
<div id="score" ></div>
<div id="currentScore"></div>
<div id="motherboard">
<canvas id="gameCanvas" width="1400"; height="500"></canvas>
<script src='profile.js'></script>
<script src='index.js'></script>
<button id="mainMenu"> Main Menu </button></div>
</div>
<div id="sound">
<audio src="soundEffects/paddleHit.wav" id="paddleHit"></audio>
<audio src="soundEffects/wallHit.wav" id="wallHit"></audio>
<audio src="soundEffects/missBall.wav" id="missBall"></audio>
</div>
</body>
</html>