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>
|
2021-12-30 18:19:00 +01:00
|
|
|
<script type="module" src="dist/bundle.js"></script>
|
2021-12-31 21:42:08 +01:00
|
|
|
<link rel="stylesheet" href="app.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="menu">
|
|
|
|
<div class="open-close-menu">
|
|
|
|
</div>
|
|
|
|
<div class="counter">
|
|
|
|
</div>
|
|
|
|
<div class="item-menu">
|
|
|
|
<label for="new-item">Item name</label>
|
|
|
|
<input name="new-item" minlength="1" maxlength="32">
|
|
|
|
<button class="new-item-button">Add</button>
|
|
|
|
<button class="remove-all-items-button">Remove all</button>
|
|
|
|
</div>
|
2021-12-30 18:19:00 +01:00
|
|
|
</div>
|
2021-12-31 21:42:08 +01:00
|
|
|
</body>
|
|
|
|
</html>
|