-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.23 KB
/
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
28
29
30
31
<html>
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href='https://fonts.googleapis.com/css?family=Quicksand:400,700' rel='stylesheet' type='text/css'>
<script src="js/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/sweetalert.css">
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script src="jquery-1.11.3.js"></script>
<script src="game.js"></script>
<script src="script.js"></script>
<title>Sweep</title>
</head>
<body>
<div id="stage"></div>
<div id="hand"></div>
<div id="action">
<div class="button" id="pileBtn" onclick="submitMove(false)">Make Pile</div>
<div class="button" id="pickBtn" onclick="submitMove(true)">Pick Up Pile</div>
<div class="button" id="selectBtn">Select Card</div>
<div class="button" id="nextPlayer" onclick="confirmPlayer()">Next Player</div>
</div>
<div id="actionBar">
<h1>Sweep</h1>
</div>
<div id="players">
<div class="player" id="player1"><div class="profile">1</div><span class="score"></span></div>
<div class="player" id="player0"><div class="profile">2</div><span class="score"></span></div>
</div>
</body>
</html>