-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
36 lines (33 loc) · 987 Bytes
/
Copy pathindex.php
File metadata and controls
36 lines (33 loc) · 987 Bytes
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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Calistoga|Roboto+Slab&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="cards.css" media="screen" />
<title>Blackjack</title>
</head>
<body>
<div class="rules flag">
You are playing against the computer.<br>
Closest to 21 wins.<br>
The dealer draws from deck until it's cards are more than 17.<br>
A is worth 11 or 1.<br>
J, Q and K are worth 10.<br>
the rest are worth its value.<br>
Good luck!
</div>
<div id="canvas">
</div>
<div class="control">
<div class="button" id="button1">Play</div>
<div class="button" id="button2">Hit</div>
<div class="button" id="button3">Stand</div>
</div>
<script src="main.js">
</script>
</body>
</html>