17 lines
463 B
HTML
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>
|