forked from marquez.juan/clase-10-ejercicios-de-repaso
21 lines
552 B
HTML
21 lines
552 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ejercicio 2</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 2</h1>
|
|
|
|
<label for="tarea">Nueva tarea:</label>
|
|
<input id="tarea" type="text" placeholder="Escribí una tarea">
|
|
<button id="agregar">Agregar</button>
|
|
|
|
<ul id="lista-tareas"></ul>
|
|
|
|
<script src="ejercicio2.js"></script>
|
|
</body>
|
|
</html>
|