index.html 657 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. <style>
  8. input {
  9. width: 100%;
  10. margin-top: 5px;
  11. }
  12. #size {
  13. font-size: 20px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <canvas
  19. id="myCanvas"
  20. width="400"
  21. height="150"
  22. style="border: 1px solid #d3d3d3;"
  23. >
  24. Your browser does not support the HTML5 canvas tag.</canvas
  25. >
  26. <input id="size" type="number" value="10">
  27. <input id="color" type="color">
  28. <script src="js.js"></script>
  29. </body>
  30. </html>