-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (32 loc) · 939 Bytes
/
index.html
File metadata and controls
41 lines (32 loc) · 939 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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>NOT UNO</title>
<link rel="stylesheet" href="uno_style.css">
</head>
<body>
<script src="uno_script.js"></script>
<h1>Welcome to NOT UNO!</h1>
<h2 id="error"></h2>
<p><span id="cardNum_draw">No</span> Cards in Draw Pile</p>
<p><span id="cardNum_disc">No</span> Cards in Discard Pile</p>
<p><span id="cardNum_opp">No</span> Cards in Opponents Hand</p>
<p>Card Displayed: <span id="disc_top">COLOR VALUE</span></p>
<button type="button"
onclick="startNewGame(true)" id="btn_newSolo">
New SOLO!</button>
<button type="button" id="btn_newGame"
onclick="startNewGame(false)">
New VERSUS!</button>
<h2 id="debug"></h2>
<button type="button" id="btn_draw"
onclick="drawCard()" disabled>
Draw 1 Card</button>
<p>Your Hand (<span id="cardNum_user">No</span> Cards):</p>
<!-- Insert Display here -->
<div>
<table id="userhand">
</table>
</div>
</body>
</html>