Agrega archivos iniciales

This commit is contained in:
Juanse Marquez
2026-05-19 17:38:42 -03:00
parent be61816cf3
commit ddefc238dc
3 changed files with 38 additions and 0 deletions

1
clase-9.js Normal file
View File

@@ -0,0 +1 @@
// Agregar acá el código javascript para los ejercicios

5
estilo.css Normal file
View File

@@ -0,0 +1,5 @@
div {
background-color: #DAE889;
padding: 10px;
margin: 10px;
}

32
index.html Normal file
View 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>