-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 1.02 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
32
33
34
35
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:;base64,=">
<title>Bomberman Gokhan & Ala eddine</title>
<style>
body {
background-image: url('assets/background.jpg');
background-size: 2600px;
}
body {margin: 50px; padding: 0px;}
canvas {border: 1px solid black;}
h1{font-size: 50px; display: inline;}
h2{text-align : right; font-size: 50px; }
#win2{position: absolute;top: 5%;right: 25%;font-size: 100px;}
#win1{position: absolute;top: 5%;right: 65%;font-size: 100px;}
#scoretotal{position: absolute;top: 4%;right: 5%;font-size: 80px;}
</style>
</head>
<body>
<h1>Score Perso 1 : </h1>
<h1 id="s1">0000</h1>
<h3 id="win1" hidden="true">Player 1 Win !</h3>
<center> <canvas id="myCanvas" ></canvas></center>
<h2>Score Perso 2: </h2>
<h2 id="s2">0000</h2>
<h3 id="win2" hidden="true">Player 2 Win !</h3>
<!-- <p id="scoretotal"></p> -->
<script type="module" src="./js/prg.js"></script>
</body>
</html>