-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>BlackJack</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="title">BlackJack</h1>
<br>
<div id="div1">
<h2 id="dealer">Dealer Cards:</h2><br>
<img id ="image-area1" />
<img id ="image-area2" />
<img id ="image-area8" />
<img id ="image-area9" />
<img id ="image-area10" />
<img id ="image-area11" />
<p id="text-area1"></p><br>
</div>
<div id ="div2">
<h2 id ="player">player Cards:</h2><br>
<img id ="image-area3" />
<img id ="image-area4" />
<img id ="image-area5" />
<img id ="image-area6" />
<img id ="image-area7" />
<img id ="image-area8" />
<p id="text-area2"></p>
</div>
<button id="new-game-button" onclick="startGame">New Game</button>
<button id="hit-button">Hit</button>
<button id="stay-button">Stay</button>
<script src="script.js"></script>
</body>
</html>