index.html 600 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>CANVAS</title>
  8. <style>
  9. input {
  10. display: block;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <canvas id="canvas" width="400px" height="400px"></canvas>
  16. <div class="operations">
  17. <input id="colorInput" type='color'/>
  18. <input id="radiusInput" type='number'/>
  19. <button id="randomBtn">get random</button>
  20. </div>
  21. <script src="./index.js"></script>
  22. </body>
  23. </html>