123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <style>
- input {
- width: 100%;
- margin-top: 5px;
- }
- #size {
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <canvas
- id="myCanvas"
- width="400"
- height="150"
- style="border: 1px solid #d3d3d3;"
- >
- Your browser does not support the HTML5 canvas tag.</canvas
- >
- <input id="size" type="number" value="10">
- <input id="color" type="color">
- <script src="js.js"></script>
- </body>
- </html>
|