-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport", content="width-device-width, initial-scal=1.0">
<title>Breakkkout</title>
<link rel="stylesheet" href="style.css">
<script type="module" src="./main.js"></script>
<body>
<div class="logo-container">
<img src="assets/logo.jpg" alt="Game Logo">
</div>
<div class="images-container">
<!-- <div class="left-image">
<a href="https://en.wikipedia.org/wiki/Breakout_%28video_game%29">
<img src="assets/11018401.webp">
</a>
</div> -->
<div class="game-container">
<canvas id="board"></canvas>
</div>
<!-- <div class="right-image">
<a href="https://en.wikipedia.org/wiki/Breakout_%28video_game%29">
<img src="assets/BreakOut_arcadeflyer.png">
</a>
</div> -->
</div>
<a href="https://github.com/pr2tik1/breakkkout" class="github-link" target="_blank">View on GitHub</a>
</body>
</head>
</html>