-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 1.24 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
<!DOCTYPE html>
<html lang="es">
<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>Color Picker</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="mt-3 text-center row justify-content-center mt-5">
<div class="col-12 col-md-3">
<label for="inputColor" class="form-label">Color picker</label>
<input type="color" class="form-control w-100 form-control-color" id="inputColor" value="#563d7c" title="Choose your color">
<div class="mt-3">
<button class="btn btn-primary w-100" id="btnVisualizar">Visualizar</button>
<p class="lead mt-3" id="parrafoHexa">#563d7c</p>
<div class="card p-4" id="cardColor"></div>
</div>
</div>
</div>
</div>
<script src="colores.js"></script>
</body>
</html>