-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (43 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blackjack</title>
<link rel="stylesheet" href="./css/styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<header class="title">
Blackjack
</header>
<div style="background-color: #2F4F30;">
<div class="row mt-0">
<div id=divButton class="col text-center">
<button id="btnnewgm" class="btn btn-danger col-md-1.5 ">New game <img class="img-fluid rounded float-end" style="width :30px ;height :30px" src="./img button/New-game.png" alt=""></button>
<button id="btnhit" class="btn btn-primary col-md-1">Hit <img class="img-fluid rounded float-end" style="width :30px ;height :30px" src="./img button/hit.png" alt="#"></button>
<button id="btnstand" class="btn btn-primary col-md-1">Stand <img class="img-fluid rounded float-end" style="width :30px ;height :30px" src="./img button/Stand.png" alt=""></button>
</div>
</div>
<div class="row container ">
<div class="col" style="color: white;">
<h1>Player 1 - <small>0</small></h1>
<div id="player-cards" class="right">
<!-- <img class="card" src="./cartas/10H.png" > -->
</div>
</div>
</div>
<div class="row container">
<div class="col" style="color: white;">
<h1>Computer - <small>0</small></h1>
<div id="computer-cards" class="right">
<!-- <img class="card" src="./cartas/3D.png" > -->
</div>
</div>
</div>
</div>
<script src="./js/underscore-min.js"></script>
<script src="./js/Blackjack.js"></script>
</body>
</html>