-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (117 loc) · 3.17 KB
/
index.html
File metadata and controls
144 lines (117 loc) · 3.17 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src=" https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<title>Ludo-The Game</title>
<link rel="stylesheet" href="styles2.css">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Lobster" rel="stylesheet">
<link rel="icon" href="favicon.jpg">
</head>
<body>
<center>
<h1>Ludo -The Game</h1>
<table>
<tr>
<div class="spaceA">
<div class="locker lockerA">Locker Player A <br>
<div class="coinA coin1A"></div>
<div class="coinA coin2A"></div>
<div>
<img src="dice6.png" alt="" class="diceImg" id="dicepPlayerA">
</div>
<div class = "button"><button type="button" id="buttonA" onclick="diceRollA()">Click to Roll!</button></div>
</div>
<td class="cell" id="_1"></td>
<td class="cell" id="_2"></td>
<td class="cell" id="_3"></td>
<td class="cell" id="_4"></td>
<td class="cell" id="_5"></td>
<td class="cell" id="_6"></td>
<td class="cell" id="_7"></td>
<td class="cell" id="_8"></td>
</tr>
<tr>
<td class="cell" id="_28"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="cell" id="_9"></td>
</tr>
<tr>
<td class="cell" id="_27"></td>
<td></td>
<td></td>
<td colspan="2" class="turnA">PLAYER A</td>
<td></td>
<td></td>
<td class="cell" id="_10"></td>
</tr>
<tr>
<td class="cell" id="_26"></td>
<td></td>
<td></td>
<td colspan="2" rowspan="2" class="roll">Your <br>Move! </td>
<td></td>
<td></td>
<td class="cell" id="_11"></td>
</tr>
<tr>
<td class="cell" id="_25"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="cell" id="_12"></td>
</tr>
<tr>
<td class="cell" id="_24"></td>
<td></td>
<td></td>
<td colspan="2" class="turnB">PLAYER B</td>
<td></td>
<td></td>
<td class="cell" id="_13"></td>
</tr>
<tr>
<td class="cell" id="_23"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="cell" id="_14"></td>
</tr>
<tr>
<td class="cell" id="_22"></td>
<td class="cell" id="_21"></td>
<td class="cell" id="_20"></td>
<td class="cell" id="_19"></td>
<td class="cell" id="_18"></td>
<td class="cell" id="_17"></td>
<td class="cell" id="_16"></td>
<td class="cell" id="_15"></td>
<div class="spaceB">
<div class="button"><button type="button" id="buttonB" onclick="diceRollB()">Click to Roll!</button></div>
<div class="locker lockerB">Locker Player B <br>
<div class="coinB coin1B"></div>
<div class="coinB coin2B"></div>
</div>
<img src="dice6.png" alt="" class="diceImg" id="dicepPlayerB">
</div>
</div>
</div>
</tr>
</table>
<script src="game.js" charset="utf-8"></script>
</center>
<footer>
By<br />
🎲 Anurag Singh 🎲
</footer>
</body>
</html>