-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&family=Orbitron:wght@400;500;600;700;800;900&family=VT323&display=swap" rel="stylesheet">
<script src="js/confetti.js"></script>
<script defer src='js/app.js'></script>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="/images/favicon.ico">
<title>JS Slot Machine</title>
</head>
<body>
<main>
<section id='slotTitle'>Mega Man Slots</section>
<section id='reels'>
<div id='reel1'>
<img src='' id='el1'>
</div>
<div id='reel2'>
<img src='' id='el2'>
</div>
</div>
<div id='reel3'>
<img src='' id='el3'>
</div>
</section>
<section id='bottom'>
<div id='slotMsg'></div>
<div id='text1'>Credits Won</div>
<div id='crWon'></div>
<div id='text2'>Credits Left</div>
<div id='crRemain'></div>
<div id='text3'>1 Credit per Play</div>
<div id='spinBtn'>SPIN</div>
<div id='resetBtn'>Reset</div>
<div id='sound'>🔈</div>
</main>
</body>
</html>