-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (47 loc) · 1.48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Game of life</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.cdnfonts.com/css/press-start-2p" rel="stylesheet">
</head>
<body>
<header>
<h1 class="title">
<center>Game of Life</center>
</h1>
</header>
<main>
<div id="start">
<input id="pseudo" type="text" placeholder="Write down your pseudo" maxlength="15" />
<button id="playButton" onclick="pressPlayButton()"> PLAY! </button>
<button class="resetbout" onclick="reset()"> <img id="reset" src="reset.png" width="20px" /> </button>
<div id=nbAlive></div>
</div>
<div id="center">
<div id="progressBar">
<div id="progress"></div>
</div>
<canvas id="game" width="750px" height="375px"></canvas>
<table id="leaderboard">
<caption id="topleaderboard"> LEADERBOARD </caption>
<tr>
<th> Rank </th>
<th> Pseudo </th>
<th> Score </th>
</tr>
<tbody id="tbody">
</tbody>
</table>
</div>
</main>
<script type="text/javascript" src="script.js"></script>
<!--<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>-->
<footer>
Made by BENSEBAA Achraf - SEBAICI Kelian - ZENOU-TRUCHඞT Théophile
<img id="logo" src="Logo_INSAToulouse-quadri.png" width=10% />
</footer>
</body>
</html>