Files
clase-10-ejercicios-de-repaso/ejercicio2/index.html
2026-05-28 19:37:03 -03:00

17 lines
463 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Ejercicio 2</title>
<link rel="stylesheet" href="estilo.css" />
</head>
<body>
<h1>Ejercicio 2</h1>
<input type="text" id="input-item" placeholder="Escribe un nuevo ítem" />
<button id="btn-agregar">Agregar</button>
<ul id="lista-contenedor"></ul>
<script src="ejercicio2.js"></script>
</body>
</html>