-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 1020 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/main.css">
<title>U04P01: Oficinas de empleo de Canarias</title>
</head>
<body>
<header>
<h1>Buscador de oficinas de empleo en Canarias</h1>
</header>
<nav>
<div class="busqueda">
<label>Isla</label>
<input type="text" minlength="5" id="isla">
<label>Municipio</label>
<input type="text" minlength="5" id="municipio">
</div>
<div class="botones">
<button type="button" id="bBuscar" class="botonEspe">Buscar</button>
<button type="button" id="bCancelar">Cancelar</button>
</div>
</nav>
<main id="contenido">
</main>
<footer>
<h2>2ºDAW A</h2><img src="./img/logo.png">
<h2>Kevin García</h2>
</footer>
<script src="./js/main.js" type="module"></script>
</body>
</html>