-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 954 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/api.js"></script>
<script src="js/poker.js"></script>
<script src="js/main.js"></script>
<link href="css/main.css" rel="stylesheet">
<title>Test</title>
</head>
<body>
<h1>Web Development Test</h1>
<p>Please click Shuffles Cards to start the game<p>
<button id="shuffles_cards">Shuffles Cards</button>
<span id="shuffle_message"></span><br>
<button class="select_hand1 hand_button">Select first hand</button>
<span class="hand1_message hand_message"></span>
<div class="hand1_cards cards"></div>
<button class="select_hand2 hand_button">Select second hand</button>
<span class="hand2_message hand_message"></span>
<div class="hand2_cards cards"></div>
<button class="play_button">Play!</button>
<div class="winner"></div>
<span class="winner_message"></span>
</body>
</html>