-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 954 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 954 Bytes
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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<main>
<div class="top">
<p id="play">Want to play a round?</p>
<button class="start" onclick="startGame()">START / RESTART</button>
</div>
<h1>Blackjack</h1>
<p id="message-el">something something</p>
<div id="cards-el">
<div class="placeholder"></div>
<div class="placeholder"></div>
</div>
<p id="sum-el">Sum:</p>
<div class="buttons">
<button id="card-button">GET CARDS</button>
<button id="hit-me">HIT ME</button>
</div>
<script src="index.js"></script>
</main>
</body>
</html>