forked from Kobytes/pierre-papier-ciseaux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) Β· 868 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
39
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>βπΌβπΌβπΌ - Pierre Papier Ciseaux !</title>
</head>
<body>
<header>
<h1>Pierre, Papier, Ciseaux !</h1>
</header>
<div class="scoreboard">
<div id="user" class="badge">joueur</div>
<div id="computer" class="badge">ordi</div>
<span id="user-score">0</span>:<span id="computer-score">0</span>
</div>
<div class="result">
<p>Le papier recouvre la pierre. Tu as gagnΓ© ! π«</p>
</div>
<div class="choices">
<div class="choice">
βπΌ
</div>
<div class="choice">
βπΌ
</div>
<div class="choice">
ππΌ
</div>
</div>
<p id="message">Faites votre choix π€</p>
</body>
</html>