-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
61 lines (61 loc) · 1.93 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Projekt gry jednoręki bandyta">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Slot Machine | Damian Fiałkiewicz Portfolio</title>
</head>
<body>
<div class="machine">
<h1>Slot Machine</h1>
<div class="window">
<ul id="roll_1">
<li><div class="fruit pineapple"></div></li>
<li><div class="fruit grapes"></div></li>
<li><div class="fruit plum"></div></li>
<li><div class="fruit orange"></div></li>
<!-- <li><div class="fruit strawberry">5</div></li> -->
</ul>
</div>
<div class="window">
<ul id="roll_2">
<li><div class="fruit pineapple"></div></li>
<li><div class="fruit grapes"></div></li>
<li><div class="fruit plum"></div></li>
<li><div class="fruit orange"></div></li>
<!-- <li><div class="fruit strawberry">5</div></li> -->
</ul>
</div>
<div class="window">
<ul id="roll_3">
<li><div class="fruit pineapple"></div></li>
<li><div class="fruit grapes"></div></li>
<li><div class="fruit plum"></div></li>
<li><div class="fruit orange"></div></li>
<!-- <li><div class="fruit strawberry">5</div></li> -->
</ul>
</div>
<div class="message"></div>
<div class="buttons">
<button type="button" id="start">Start</button>
<button type="button" id="stop">Stop</button>
</div>
</div>
<div class="gold-wrapper">
<div class="gold-container">
<span class="gold"></span>
<img src="img/money.png" alt="gold" />
<span class="scored"></span>
</div>
</div>
<footer>
<p>Developed by <a href="/">Damian Fiałkiewicz</a></p>
</footer>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>