-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 715 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Cache Out Gaming</title>
</head>
<body>
<div class="title-card text-box"><p>Cache Out Gaming</p></div>
<div class="subhead text-box"><p>Choose Your Game</p></div>
<div class="container">
<a class="button text-box" data-image="blackjack.png" href="blackjack.html">
<p>Blackjack</p></a>
<a class="button text-box" data-image="slots.png" href="slots.html">
<p>Slots</p></a>
<a class="button text-box" data-image="mines.png" href="mines.html">
<p>Mines</p></a>
</div>
<img id="preview" src="" class="preview">
<script src="script.js"></script>
</body>
</html>