-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (28 loc) · 730 Bytes
/
index.html
File metadata and controls
37 lines (28 loc) · 730 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Memory</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="fruit.css">
<meta charset="utf-8">
</head>
<body>
<div id="main">
<div id="container">
<div id="board"></div>
<div id="boardoverlay"></div>
</div>
<br>
<div class="meter">
<span style="width: 0%"></span>
</div>
<br>
<div class="start">Jouer</div>
<h2>Classement</h2>
<div id="billboard"></div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script>
<script type="text/javascript" src="game.js"></script>
</html>