Files
clase-9-eventoskkkkk/index.html
2026-06-01 21:23:17 -03:00

41 lines
1.2 KiB
HTML

<!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">
<button id="boton1">Boton</button>
<p id="parrafo1">Boton clickeado 0 veces</p>
</div>
<hr>
<div id="ejercicio-2">
<input type="texto" id="text">
<p id="carac0">Cantidad de caracteres: 0</p>
</div>
<hr>
<div id="ejercicio-3">
<ul id="itemListas">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
</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>