-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.3 KB
/
index.html
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">
<title>Blackjack</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/sign.css">
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Ewert&family=Rye&family=Sigmar+One&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Blackjack</h1>
<nav>
<ul>
<li><a href="#" class="button">Home Page</a></li>
<li><a href="./html/rules.html" class="button">How to Play</a></li>
<li><a href="./html/bank.html"class="button"> Bank Page</a></li>
<li><a href="./html/about-us.html"class="button">About the Team</a></li>
</ul>
</nav>
</header>
<main>
<div><img src="./images/about-background-top.jpg"></div>
<section>
<img src="./images/game-page/card-faces/acespades.png" alt="Ace of Spades Playing Card">
</div>
</section>
<section>
<div id="play-button"><a href="./html/game.html"class="button">Start Game</a></div>
</section>
<div><img src="./images/about-background-bottom.jpg"></div>
</main>
<footer>
© Felicia, Scott, Chase, Kyle
</footer>
</body>
</html>