-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.3 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
38
39
40
41
42
43
<!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>Cubo</title>
<link rel="shortcut icon" href="./favicon.png" type="image/x-icon">
<meta name="description" content="crear un cubo">
<link rel="stylesheet" href="./css/main.css" />
<script defer type="module" src="./src/index.js"></script>
</head>
<body>
<header>
<form class="navegation" data-form-cubo>
<div class="input-group">
<label class="label">
Dimension
<div class="group">
<input class="primary" type="number" data-input-size />
</div>
</label>
</div>
<div class="input-group">
<label class="label">
Color
<div class="group">
<input class="picker" type="color" value="#000000" data-input-color/>
<input class="primary" type="text" value="#000000" readonly data-input-show-color/>
</div>
</label>
</div>
<button data-button-add>Crear</button>
</form>
</header>
<!-- end header -->
<h1 class="title">Cubo</h1>
<main data-content-cube></main>
</body>
</html>