-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/AlertifyJS/1.13.1/css/alertify.min.css">
<script async defer src="https://cdnjs.cloudflare.com/ajax/libs/AlertifyJS/1.13.1/alertify.min.js"></script>
<script async defer src="script.js"></script>
</head>
<body>
<div class="heading"><b><i>SLOT MACHINE</b></i></div>
<div class="machine">
<div class="slot" id="slot1">
<div class="value" id="value1">😃</div>
</div>
<div class="slot" id="slot2">
<div class="value" id="value2">😭</div>
</div>
<div class="slot" id="slot3">
<div class="value" id="value3">😇</div>
</div>
</div>
<button id="btn">START</button>
<button id="stop">STOP</button>
<button id="rld">Reload</button>
</body>
</html>