-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.72 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Blackjack</title>
</head>
<body>
<header class="header">
<h1>Welcome to Blackjack!</h1>
</header>
<section class="resultSection">
<h1 class="result">Let's Start</h1>
</section>
<section class="playSection">
<div class="cards">
<div class="userCards">
<h1 class="userSumSection">You : <span class="userSum">0</span></h1>
<div class="cardSection userCardSection">
</div>
</div>
<div class="compCards">
<h1 class="compSumSection">Computer : <span class="compSum">0</span></h1>
<div class="cardSection compCardSection">
</div>
</div>
</div>
<div class="buttons">
<button class="hit btn">Hit</button>
<button class="stand btn " disabled>Stand</button>
<button class="deal btn " disabled>Deal</button>
</div>
</section>
<section class="scoreBoard">
<h1 class="scoreBoardHeading">Score Board</h1>
<table class="scoreBoardTable">
<tr>
<th>You</th>
<th>Computer</th>
<th>Draw</th>
</tr>
<tr>
<td><span class="userScore">0</span></td>
<td><span class="compScore">0</span></td>
<td><span class="draws">0</span></td>
</tr>
</table>
</section>
<script src="app.js"></script>
</body>
</html>