-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFinalProject.html
More file actions
83 lines (72 loc) · 2.47 KB
/
Copy pathFinalProject.html
File metadata and controls
83 lines (72 loc) · 2.47 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
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Final Project Blackjack Game - Marcus Diaz</title>
<style>
body {
background-color: #800080;
font-family: Arial, sans-serif;
color: #ffffff;
line-height: 1.6;
text-align: center;
}
header {
text-align: center;
padding: 20px;
}
nav {
text-align: center;
margin: 20px 0;
}
nav a {
margin: 0 10px;
color: #ffffff;
text-decoration: none;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 20px auto;
}
h1 {
color: #FFD700;
}
</style>
</head>
<body>
<header>
<h1>Marcus Diaz's Final Project</h1>
</header>
<nav>
<a href="https://marcus0257.github.io/index.html" target="_blank">Home</a>
<a href="https://marcus0257.github.io/javascripts.html" target="_blank">JavaScripts</a>
<a href="https://marcus0257.github.io/about.html" target="_blank">About Me</a>
</nav>
<main>
<img src="csc106_banner.jpg" alt="CSC 106 Banner">
<h2>Blackjack Game</h2>
<p>Unfortunately, we coded the game in 600 x 600, and it is not translating into GitHub, so bear with me. This is me and Osman Barrie's Blackjack game. Here's how to play:</p>
<ol>
<li>Click "Hit" to receive a card.</li>
<li>Click "Hit" again if you want another card. You can choose to "Stand" when you're ready.</li>
<li>Once you choose "Stand," the dealer will receive three cards.</li>
<li>We've changed the rules a bit, so if the game is not over, you can decide if you want to hit or stand again.</li>
</ol>
<p>These two buttons are for your convenience:</p>
<a href="https://www.khanacademy.org/computer-programming/blackjack-final-project/6346099006160896" target="_blank">
<img src="khan.png" alt="Khan Academy">
</a>
<a href="https://www.loom.com/share/2fd899a9c6184eceb19b69b86d608543" target="_blank">
<img src="video.png" alt="Video Tutorial">
</a>
</main>
</body>
</html>