roulette-wheel/index.html

47 lines
1.7 KiB
HTML
Raw Permalink Normal View History

2021-12-29 20:53:47 +01:00
<!DOCTYPE html>
<html lang="en">
2021-12-31 21:42:08 +01:00
<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" />
2021-12-29 20:53:47 +01:00
<title>Roulette wheel</title>
<script type="module" src="scripts/bundle.js"></script>
2021-12-31 21:42:08 +01:00
<link rel="stylesheet" href="app.css" />
2022-01-14 16:14:35 +01:00
<link rel="icon" type="image/x-icon" href="/favicon.ico">
2021-12-31 21:42:08 +01:00
</head>
<body>
2022-01-13 21:07:27 +01:00
<audio class="roulette-wheel-audio">
2022-01-13 22:22:54 +01:00
<source src="static/roulette-wheel.mp3" type="audio/mpeg">
2022-01-13 21:07:27 +01:00
Your browser does not support the audio element
</audio>
<div class="light-dark-mode">
<img class="moon-sun" src="static/moon.png" alt="mode" />
</div>
2021-12-31 21:42:08 +01:00
<div class="menu">
<p class="counter"></p>
<label for="new-item">Item name</label>
2022-01-05 19:19:33 +01:00
<input name="new-item" minlength="1" maxlength="20" />
<button class="add-item-button">Add</button>
<button class="remove-all-items-button">Remove all</button>
<ul class="menu-item-list"></ul>
</div>
<div class="roulette-wheel">
2022-01-05 19:19:33 +01:00
<div class="winner"></div>
<canvas width="800px" height="750px"></canvas>
2021-12-30 18:19:00 +01:00
</div>
2022-01-11 23:29:13 +01:00
<footer>
<div hidden="true" class="icons-authors">
<img class="moon-sun" src="static/moon.png" alt="mode" />
<img class="moon-sun" src="static/sun.png" alt="mode" /> Made by made by
<a href="https://www.freepik.com" title="Freepik">Freepik</a> from
<a href="https://www.flaticon.com/" title="Flaticon"
2022-01-13 21:07:27 +01:00
>www.flaticon.com</a>
<a href="https://freesound.org/people/tony_bear/sounds/274007/">
Sound
</a>
2022-01-11 23:29:13 +01:00
</div>
2022-01-13 21:07:27 +01:00
<p>Icons & sound</p>
2022-01-11 23:29:13 +01:00
</footer>
2021-12-31 21:42:08 +01:00
</body>
</html>