-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Six From Forty-Nine</title>
<link rel="stylesheet" href="style.css">
<script>let FF_FOUC_FIX;</script>
</head>
<body>
<main>
<header>
<h1>Six From Forty-Nine</h1>
</header>
<section>
<div id="result">
<ul>
<li id="b1"></li>
<li id="b2"></li>
<li id="b3"></li>
<li id="b4"></li>
<li id="b5"></li>
<li id="b6"></li>
</ul>
</div>
<div id="btns">
<button id="play-btn">Play</button>
<button id="stop-btn">Stop</button>
<button id="reset-btn">Reset</button>
</div>
<div id="coupon"></div>
</section>
<footer>
<p>You can find more projects on my <a href="https://github.com/coder36459" target="_blank">GitHub</a>. If you want to find out more about me, take a look on <a href="https://www.linkedin.com/in/maciej-browarski" target="_blank">LinkedIn</a>.</p>
</footer>
</main>
<script src="script.js"></script>
<noscript>Your browser does not support JavaScript!</noscript>
</body>
</html>