-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.html
84 lines (82 loc) · 2.89 KB
/
default.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>PokerGame.Windows</title>
<!-- WinJS references -->
<link href="//Microsoft.WinJS.2.0/css/ui-dark.css" rel="stylesheet" />
<script src="//Microsoft.WinJS.2.0/js/base.js"></script>
<script src="//Microsoft.WinJS.2.0/js/ui.js"></script>
<!-- PokerGame.Windows references -->
<link href="/css/default.css" rel="stylesheet" />
<script src="/js/default.js"></script>
<script src="/js/poker.js"></script>
</head>
<body>
<img src="images/title.gif" width=381 height=81>
<hr />
<form name="form1">
<table>
<tr>
<td>
<img border=0 src="images/blanky.gif" height=136 width=106>
</td>
<td>
<img border=0 src="images/blanky.gif" height=136 width=106>
</td>
<td>
<img border=0 src="images/blanky.gif" height=136 width=106>
</td>
<td>
<img border=0 src="images/blanky.gif" height=136 width=106>
</td>
<td>
<img border=0 src="images/blanky.gif" height=136 width=106>
<td>
</td>
</tr>
<tr>
<td>
<a href="#" onclick="Hold(1);">
<img border=0 src="images/hold.gif" height=50 width=106>
</a>
</td>
<td>
<a href="#" onclick="Hold(2);">
<img border=0 src="images/hold.gif" height=50 width=106>
</a>
</td>
<td>
<a href="#" onclick="Hold(3);">
<img border=0 src="images/hold.gif" height=50 width=106>
</a>
</td>
<td>
<a href="#" onclick="Hold(4);">
<img border=0 src="images/hold.gif" height=50 width=106>
</a>
</td>
<td>
<a href="#" onclick="Hold(5);">
<img border=0 src="images/hold.gif" height=50 width=106>
</a>
</td>
</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="images/deal.gif" height=50 width=106>
</a>
</td>
</tr>
</table>
</form>
</body>
</html>