forked from marquez.juan/clase-9-eventos
Agrega archivos iniciales
This commit is contained in:
1
clase-9.js
Normal file
1
clase-9.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// Agregar acá el código javascript para los ejercicios
|
||||||
5
estilo.css
Normal file
5
estilo.css
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
div {
|
||||||
|
background-color: #DAE889;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
32
index.html
Normal file
32
index.html
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
<title>Clase 9 - Eventos</title>
|
||||||
|
<link rel="stylesheet" href="estilo.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Clase 9 - Eventos</h1>
|
||||||
|
<div id="ejercicio-1">
|
||||||
|
<!-- Agregar acá el código HTML que haga falta para el ejercicio 1 -->
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div id="ejercicio-2">
|
||||||
|
<!-- Agregar acá el código HTML que haga falta para el ejercicio 2 -->
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div id="ejercicio-3">
|
||||||
|
<!-- Agregar acá el código HTML que haga falta para el ejercicio 3 -->
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div id="ejercicio-4">
|
||||||
|
<!-- Agregar acá el código HTML que haga falta para el ejercicio 4 -->
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div id="ejercicio-5">
|
||||||
|
<!-- Agregar acá el código HTML que haga falta para el ejercicio 5 -->
|
||||||
|
</div>
|
||||||
|
<script src="clase-9.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user