-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<link rel="shortcut icon" href="public/logo.webp" type="image/x-icon" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/style.css" />
<title>Dibujo en canvas</title>
<!-- <link rel="stylesheet" href="./estilos.css" /> -->
</head>
<body>
<div class="container">
<section class="box-card">
<div class="container-inputs">
<label>Lineas</label>
<input
min="1"
type="number"
placeholder="Numero de lineas"
name="numero"
id="numero"
/>
<label for="">Color</label>
<input type="color" name="color" id="color" value="#fefefe" />
<button type="buttom" id="enviar">Mostrar</button>
</div>
<div class="container-canvas">
<canvas width="500" height="500" id="dibujo"></canvas>
</div>
</section>
</div>
<!-- <script src="./src/resize.js"></script> -->
<script src="./src/codigo.js"></script>
</body>
</html>