-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="/stylesheet.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap" rel="stylesheet">
<title>BlackJack With Van</title>
<link rel="icon" type="image/png" href="/img/favicon.ico"/>
</head>
<!-- Body-->
<body>
<section class="content">
<div class="container">
<h1>Black Jack</h1>
<p id="message-el">Want to play a round? 👋🏼</p>
<p id="cards-el">Cards:</p>
<p id="sum-el">Sum:</p>
<button type="button" class="btn btn-dark" id="clickStart" onclick="startGame()">Start Game</button>
<button type="button" class="btn btn-dark" id="newCard" onclick="newCard()">New Card</button>
<p id="player-el"></p>
</div>
</section>
<!-- Javascript Link-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="/index.js"></script>
</body>
</html>