-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
84 lines (76 loc) · 3.12 KB
/
contacto.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="es" xml:lang="es">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./styles/contacto.css">
<title>Contacto</title>
<meta name=viewport content="width=device-width, initial-scale=1">
</head>
<body>
<nav>
<a href="./index.html">
<img alt="Home" title="Home" src="./images/logo.png">
</a>
<ul>
<li>
<a href="./index.html">Super Nintendo Mini</a>
</li>
<li>
<a href="./switch.html">Nintendo Switch</a>
</li>
<li>
<a href="./3ds.html">Nintendo 3DS</a>
</li>
<li>
<a href="./contacto.html">Contacto</a>
</li>
</ul>
</nav>
<div class="container">
<form id="contacto">
<h1>Contáctanos</h1>
<h2>Escribenos la consulta que quieras hacernos llegar.</h2>
<fieldset>
<label for="nombre">Nombre:</label>
<input placeholder="Nombre" type="text" name="textfield" id="nombre" label="Nombre" required="true" autofocus="true">
</fieldset>
<fieldset>
<label for="email">Email:</label>
<input placeholder="Email" type="email" id="email" name="emailfield"label="Email" required="true">
</fieldset>
<fieldset>
<label for="consulta">Consulta:</label>
<textarea type="text" placeholder="Escribe tu mensaje aqui...." id="consulta" label="Consulta" required="true"></textarea>
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit">Enviar</button>
</fieldset>
</form>
</div>
<footer id="pie">
<div class="wf-container">
<div class="wf-column-container">
<div class="wf-column wf-about-wix-column">
<div class="wf-white-logo">Validaciones</div>
<div class="wf-description">
<!-- Icono validación HTML -->
<a href="https://validator.w3.org/check?uri=referer">
<img src="https://www.w3.org/html/logo/badge/html5-badge-h-solo.png" alt="HTML5 Válido" title="HTML5 Válido" height="64"
width="63" />
</a>
<!-- Icono validación CSS -->
<a href=" http://jigsaw.w3.org/css-validator/check/referer ">
<img src=" http://jigsaw.w3.org/css-validator/images/vcss" alt="CSS Válido" height="31" width="88" />
</a>
</div>
</div>
<div class="wf-closing">
<div class="wf-closing-description">
<p>© Copyright by Beltrán García</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>