-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
64 lines (63 loc) · 2.54 KB
/
help.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TUP LC2 - TP Integrador</title>
<link rel="shortcut icon" href="img/weather.ico" type="image/x-icon">
<!-- Estilos CSS -->
<link rel="stylesheet" href="CSS/common.css">
<link rel="stylesheet" href="CSS/pages/help.css">
<script src="./js/common.js" defer></script>
<script src="./js/pages/help.js" defer></script>
</head>
<body>
<header>
<h1>
<span>
<img src="./img/weather.ico" width="50" height="50" alt="">
</span>
<span>Clima App</span>
</h1>
<nav>
<ul>
<li><a href="index.html">Clima</a></li>
<li><a href="add-city.html">Agregar Ciudad</a></li>
<li class="current-page"><a href="help.html">Ayuda</a></li>
</ul>
</nav>
</header>
<!-- Contenido principal de la página -->
<main>
<div>
<h2>Ayuda Clima App v.1.0</h2>
<p><strong>Esta App te permite consultar el clima de una ciudad en particular utilizando la API de <a
target="_blank" href="https://openweathermap.org">OpenWheaterMap</a>.</strong></p>
<p><strong>Para poder consultar el clima, primero deberá <a href="add-city.html">Agregar una ciudad</a> y
luego seleccionar la Ciudad en cuestión desde la página <a href="index.html">Clima</a>.</strong></p>
</div>
<div>
<section class="help">
<form class="help-form" action="#">
<label for="name">Nombre:</label>
<input type="text" id="name" name="name"> <br />
<label for="Email">Email:</label>
<input type="email" id="Email" name="Email"> <br />
<label for="mensaje">Mensaje:</label>
<textarea cols="50" rows="10" name="area-de-texto" id="mensaje"></textarea><br />
<div class="help-buttons">
<button name="limpiar" id="boton-limpiar">Limpiar</button>
<button name="enviar" id="boton-enviar">Enviar</button>
</div>
</form>
<p class="message" id="invalid-email-error">Ingrese un Email válido</p>
</section>
</div>
</main>
<footer>
<p>
Desarrollado con ♥ - LC2
</p>
</footer>
</body>
</html>