-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 964 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
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Blackjack</title>
<link rel="stylesheet" href="index.css">
<script src="index.js" defer></script>
</head>
<body>
<div class="layout">
<h2>Dealer Hand</h2>
<div class="wrapper">
<div class="cards" id="dealer">
</div>
</div>
<h2>Player Hand</h2>
<div class="wrapper">
<div class="cards" id="player">
</div>
</div>
<div class="wrapper">
<div class="container" id="button-container">
<button id="hit">Hit</button>
<button id="pass">Pass</button>
</div>
</div>
<div class="background" id="notice">
<div class="notice">
<p></p>
<button id="next-hand">Deal Next Hand</button>
</div>
</div>
</div>
</body>
</html>