-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
69 lines (63 loc) · 2.14 KB
/
rules.html
File metadata and controls
69 lines (63 loc) · 2.14 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
<!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>Rules Blackjack</title>
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link rel="stylesheet" href="style.css" />
<!--------- 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="index.html">Game</a>
</header>
<section class="rules-game">
<h1 class="title-rule">Rule of the game</h1>
<p class="about">
Your objective is to get 21 points before the computer,<br />
if you exceed that number you will lose instantly.<br />
</p>
<p>Choices:</p>
<div class="container-choices">
<button class="hit rule-btn-hit">
<span class="material-symbols-outlined"> add_circle </span> Hint
</button>
<p class="hint-rule">Get 1 more card</p>
<button class="stand rule-btn-stand">
<span class="material-symbols-outlined"> front_hand </span> Stand
</button>
<p class="stand-rule">
Stop the game and check who was more near the 21 points
</p>
</div>
<div class="container-cards">
<img class="rule-card" alt="ace card" src="/cards/A-H.png" />
<p class="point-p">
Ace cards = <br />
1 or 11 points
</p>
<img class="rule-card" alt="face card" src="/cards/K-H.png" />
<p class="point-p">
Face cards = <br />
10 points
</p>
<img class="rule-card" alt="number card" src="/cards/2-H.png" />
<p class="point-p">
Other cards = <br />
Their number
</p>
</div>
</section>
</body>
</html>