mirror of
https://github.com/kevinveenbirkenbach/roulette-wheel.git
synced 2024-11-22 10:11:04 +01:00
25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
<!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">
|
|
<title>Roulette wheel</title>
|
|
<script type="module" src="dist/bundle.js"></script>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<div id="menu">
|
|
<img src="static/right-arrow.png" alt="open-close-arrow" class="openCloseMenu">
|
|
<p id="counter">0/16</p>
|
|
<div id="newItem">
|
|
<label for="newItem">Item name</label>
|
|
<input name="newItem" minlength="1" maxlength="32">
|
|
<button id="newItemButton">Add</button>
|
|
<button id="removeAllItemsButton">Remove all</button>
|
|
</div>
|
|
</div>
|
|
<canvas></canvas>
|
|
<footer><div>Icons made by <a href="https://www.flaticon.com/authors/roundicons" title="Roundicons">Roundicons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div></footer>
|
|
</body>
|
|
</html> |