-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (65 loc) · 2.28 KB
/
index.html
File metadata and controls
75 lines (65 loc) · 2.28 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blackjack Game</title>
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link rel="stylesheet" href="style.css" />
<!--------- Cards ---------->
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/cardsJS/dist/cards.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script
src="https://unpkg.com/cardsJS/dist/cards.min.js"
type="text/javascript"
></script>
<!--------- Icons google ---------->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
</head>
<body>
<header>
<img class="logo" alt="logo" src="/images/favicon.png" />
<a href="rules.html">Rules</a>
</header>
<section id="index" class="table-game">
<div class="container-computer">
<h1 class="computer-name">Computer</h1>
<div class="hand" id="computer-cards" data-hand=""></div>
<h2 class="computer-points">Computer Points</h2>
<span class="computer-circle">
<h3 class="computer-counter">05</h3></span
>
</div>
<div class="choices-btn">
<button class="hit">
<span class="material-symbols-outlined"> add_circle </span> Hit
</button>
<button class="restart">Restart</button>
<button class="stand">
<span class="material-symbols-outlined"> front_hand </span> Stand
</button>
</div>
<p class="message"></p>
<div class="container-user">
<h2 class="user-points">Your Points</h2>
<span class="user-circle"><h3 class="user-counter">10</h3></span>
<div class="hand" id="user-cards" data-hand=""></div>
<h1 class="user-name">You</h1>
</div>
</section>
<script src="deck.js"></script>
<script src="game.js"></script>
</body>
</html>