-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (30 loc) · 1.03 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
<!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>Colorea los cuadros</title>
</head>
<body>
<div style="display: flex;">
<div id="div1" style="background-color: red; width:200px; height: 200px;"></div>
<div id="div2" style="background-color: blue; width:200px; height: 200px;"></div>
<div id="div3" style="background-color: green; width:200px; height: 200px;"></div>
<div id="div4" style="background-color: yellow; width:200px; height: 200px;"></div>
</div>
<div>
<b><p id="mensaje"></p></b>
</div>
<div>
<p>Para cambiar el color de un cuadrado, presione la tecla del color deseado y luego haga click en el cuadro
a cambiar:</p>
<ul>
<li>A: Negro</li>
<li>S: Aqua</li>
<li>D: Morado</li>
</ul>
</div>
<script src="assets/js/app.js"></script>
</body>
</html>