-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
39 lines (33 loc) · 1.03 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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body onload="onload()" >
<header>
<div class="bomb_game">
<h1> Bomb Game </h1>
</div>
</header>
<div class="niveau" >
<div class="btn_div" > <button class="button" onclick="reset_all()" >Reset</button></div><div class="btn_div" > <button class="button">Easy</button></div><div class="btn_div" > <button class="button">Hard</button></div>
</div>
<div class="container">
<div class="lastGames" id="lastGames" >
<div > <p> Last games played </p>
<p>First Game</p>
</div>
</div>
<div class="game">
</div>
</div>
<footer>
<div>
Mimene Younes
</div>
</footer>
</body>
<script src="js/index.js" ></script>
</html>