-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
31 lines (28 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LABIRYNT</title>
<meta name="Author" content="Adam Kurbiel, Karina Bednarska">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="logo">
<img src="assets/ui/logo-fixed.png" alt="LAB TRY">
</div>
<div class="container">
<button class="startButton" onclick="startGame()" id="startButton">Start</button>
<canvas class="notes-panel" width="250" height="700" id="gameNotes"></canvas>
<canvas class="game-canvas" width="700" height="700" id="game"></canvas>
<canvas class="inventory" width="400" height="700" id="gameStats"></canvas>
</div>
<div class="bg_foto bg_foto--left">
<img src="assets/ui/tentacle.png">
</div>
<div class="bg_foto bg_foto--right">
<img src="assets/ui/tentacle.png">
</div>
<script type="module" src="src/core/main.js"></script>
</body>
</html>