generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Enter your description here"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Blackjack</title>
<link href="assets/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>BlackJack</h1>
</header>
<main>
<div class="dealer-container">
<p id="dealer-el">Dealer Cards: </p>
<p id="dealer-sum">Dealer Sum: </p>
</div>
<p id="message-el">Want to play a round?</p>
<p id="cards-el">Your Cards: </p>
<p id="sum-el">Your Sum: </p>
<p id="winlose-el"></p>
<div class="button-container">
<button onclick="startGame()">START NEW GAME</button>
<button onclick="betMore()">BET MORE</button>
<button onclick="newCards()"> NEW CARD</button>
<button onclick="showResult()">SHOW RESULT</button>
</div>
<p id="playerchips-el"></p>
<p id="playerbet-el"></p>
</main>
<script src="assets/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>