-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.php
More file actions
39 lines (39 loc) · 1.18 KB
/
rules.php
File metadata and controls
39 lines (39 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name = "contributions" content = "File made and turned into php by Vien, contributions section added by David">
<title>Blackjack Rules</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header><h1>Blackjack Rules</h1></header>
<main>
<section>
<h2>Objective</h2>
<p>The goal of Blackjack is to beat the dealer by having a hand value closer to 21 without exceeding it.</p>
</section>
<section>
<h2>Card Values</h2>
<ul>
<li>Number cards (2-10) are worth their face value.</li>
<li>Face cards (J, Q, K) are worth 10 points.</li>
<li>Ace can be worth 1 or 11 points.</li>
</ul>
</section>
<section>
<h2>Gameplay</h2>
<ol>
<li>Each player is dealt two cards, dealer receives two cards (one face up, one down).</li>
<li>Players can "Hit" or "Stand".</li>
<li>Bust if total > 21.</li>
<li>Dealer plays after players stand.</li>
</ol>
</section>
<section>
<a href="index.php?action=home" class="btn">Back to Home</a>
</section>
</main>
</body>
</html>