25 lines
650 B
HTML
25 lines
650 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>
|
|
<div id="lista">
|
|
<h2>Lista de tareas</h2>
|
|
<ul>
|
|
|
|
</ul>
|
|
</div>
|
|
<div id="agregar">
|
|
<input type="text" placeholder="Descripción de la nueva tarea">
|
|
<button type="button">Agregar tarea</button>
|
|
</div>
|
|
|
|
<script src="ejercicio2.js"></script>
|
|
</body>
|
|
</html>
|