-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThe-royal-game-of-ur.html
49 lines (39 loc) · 1.19 KB
/
The-royal-game-of-ur.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The royal game of ur</title>
<link rel="stylesheet" type="text/css" href="The-royal-game-of-ur.css">
</head>
<body>
<form>
<div>
<label for="nombre">Nombre de pion :</label>
<input type="text" id="nombre" name="nombre">
<h3> Effet de la case 8 ? </h3>
<input type="button" id="case8_oui" value="Oui">
<input type="button" id="case8_non" value="Non">
</div>
</form>
<div id="canvas">
<h2> The Royal Game of Ur </h2>
<h3 id = "Score" > J1: 0 J2 : 0 </h3>
<canvas id="Canvas" width="232" height="500" background-color="#CD853F" ></canvas>
</div>
<input type="button" id="Lancer" value="Lancer le dé">
<h3 id = "lancer" > Lancer de dé : </h3>
<div id="input">
<div id="buttonJ1">
<div id="divJ1">
</div>
</div>
<div id="buttonJ2">
<div id="divJ2">
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="The-royal-game-of-ur.js"></script>
</body>
</html>