-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<!-- <section>TEST</section> -->
<div id="timer" class="hidden"></div>
<div id="icons-container" class="hidden">
<div id="pierre"></div>
<div id="papier"></div>
<div id="ciseaux"></div>
</div>
<div id="button">
<span>ShiFuMi</span>
<div class="bg"></div>
</div>
<div id="result" class="hidden">
<div class="icons">
<div id="icon-player"></div>
<p class="vs">VS</p>
<div id="icon-machine"></div>
</div>
<div id="winner"></div>
</div>
<script src="model.js"></script>
<script src="view.js"></script>
<script src="controler.js"></script>
</body>
</html>