-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpokerGame.html
More file actions
45 lines (45 loc) · 1.87 KB
/
pokerGame.html
File metadata and controls
45 lines (45 loc) · 1.87 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Draw Poker</title>
<script type="text/javascript" src="poker.js"></script>
</head>
<body>
<img src="jsworkshop_art/title.gif" width=381 height=81>
<hr>
<form NAME="form1" onsubmit="return false">
<table>
<tr>
<td> <img border=0 src="jsworkshop_art/blank.gif" height=136 width=106>
<td> <img border=0 src="jsworkshop_art/blank.gif" height=136 width=106>
<td> <img border=0 src="jsworkshop_art/blank.gif" height=136 width=106>
<td> <img border=0 src="jsworkshop_art/blank.gif" height=136 width=106>
<td> <img border=0 src="jsworkshop_art/blank.gif" height=136 width=106>
<td> </td>
</tr>
<tr>
<td> <a href="#" onClick="Hold(0,0)">
<img border=0, src="jsworkshop_art/hold.gif" height=50 width=106</a>
<td> <a href="#" onClick="Hold(0,1)">
<img border=0, src="jsworkshop_art/hold.gif" height=50 width=106</a>
<td> <a href="#" onClick="Hold(0,2)">
<img border=0, src="jsworkshop_art/hold.gif" height=50 width=106</a>
<td> <a href="#" onClick="Hold(0,3)">
<img border=0, src="jsworkshop_art/hold.gif" height=50 width=106</a>
<td> <a href="#" onClick="Hold(0,4)">
<img border=0, src="jsworkshop_art/hold.gif" height=50 width=106</a>
</tr>
<tr>
<td> <B>Total<BR>Score:</B>
<input TYPE="TEXT" SIZE=6 NAME="total" VALUE=100></td>
<td colspan=2> <B>Current <BR>Hand:</B>
<input TYPE="TEXT" SIZE=20 NAME="message" VALUE="Press DEAL to begin.">
<td>
<td> <a href="#" onClick="DealDraw()">
<img border=0 src="jsworkshop_art/deal.gif" height=50 width=106</a>
</tr>
</table>
</form>
</body>
</html>