-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<meta name="author" content="German Solano" />
<meta
name="description"
content="Juego de Breakout realizado con el Canvas API"
/>
<meta property="og:title" content="Breakout Game" />
<meta
property="og:description"
content="Juego de Breakout realizado con el Canvas API"
/>
<meta property="og:url" content="https://kontrolg.github.io/breakout" />
<meta property="og:image" content="/game-preview.jpg" />
<title>Breakout Game</title>
</head>
<body>
<canvas class="mainCanvas">
<p>
Your browser doesn't support a fundamental component to play this game
:(
</p>
</canvas>
<audio src="boom.mp3" class="boom"></audio>
<audio src="liveLost.mp3" class="liveLost"></audio>
<script src="models.js"></script>
<script src="index.js"></script>
</body>
</html>