mirror of
				https://github.com/kevinveenbirkenbach/roulette-wheel.git
				synced 2025-11-03 18:47:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1023 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1023 B
		
	
	
	
		
			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 class="light-dark-mode">
 | 
						|
      <img class="moon-sun" src='static/moon.png' alt="mode">
 | 
						|
    </div>
 | 
						|
    <div class="menu">
 | 
						|
      <!-- <div class="open-close-menu">
 | 
						|
        <img class="close-arrow" src="static/right-arrow.png" alt="close menu" />
 | 
						|
      </div> -->
 | 
						|
      <p class="counter"></p>
 | 
						|
      <label for="new-item">Item name</label>
 | 
						|
      <input name="new-item" minlength="1" maxlength="32" />
 | 
						|
      <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">
 | 
						|
      <canvas></canvas>
 | 
						|
    </div>
 | 
						|
  </body>
 | 
						|
</html>
 |