2021-12-29 20:53:47 +01:00
<!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 >
2021-12-30 18:19:00 +01:00
< script type = "module" src = "dist/bundle.js" > < / script >
< link rel = "stylesheet" href = "app.css" >
2021-12-29 20:53:47 +01:00
< / head >
< body >
2021-12-30 18:19:00 +01:00
< 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 >
2021-12-29 20:53:47 +01:00
< / body >
< / html >