-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
159 lines (128 loc) · 5.36 KB
/
contacto.html
File metadata and controls
159 lines (128 loc) · 5.36 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ecommerce - Contacto</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<header>
<h1 class="nombre-sitio">Tienda <span> Muebles </span></h1>
</header>
<div class="contenedor-navegacion">
<nav class="nav-principal contenedor">
<a href="index.html">Inicio</a>
<a href="nosotros.html">Nosotros</a>
<a href="tienda.html">Tienda</a>
<a href="blog.html">Blog</a>
<a href="galeria.html">Galería</a>
<a href="contacto.html">Contacto</a>
</nav>
</div>
<main class="contenido-principal contenedor ">
<h2 class="text-center">Contacto</h2>
<form class="formulario">
<fieldset>
<legend>Tus Datos</legend>
<div class="campo">
<label for="nombre">Nombre: </label>
<input id="nombre" type="text" placeholder="Tu Nombre" required>
</div>
<div class="campo">
<label for="asunto">Asunto:</label>
<input id="asunto" type="text" placeholder="Tu Asunto" required>
</div>
<div class="campo">
<label for="email">E-mail:</label>
<input id="email" type="email" placeholder="Tu Email" >
</div>
<div class="campo">
<label for="tel">Teléfono:</label>
<input id="tel" type="tel" placeholder="Tu Teléfono" >
</div>
<div class="campo">
<label for="tel">Mensaje:</label>
<textarea rows="10" cols="20"></textarea>
</div>
</fieldset>
<fieldset>
<legend>País</legend>
<div class="campo">
<label for="pais">País</label>
<select id="pais">
<option value="">-- Seleccione -- </option>
<option value="MX">México</option>
<option value="PR">Perú</option>
<option value="CO">Colombia</option>
<option value="AR">Argentina</option>
<option value="ES">España</option>
<option value="CL">Chile</option>
</select>
</div>
</fieldset>
<fieldset>
<legend>Información Extra</legend>
<div class="campo">
<label for="cliente">Cliente</label>
<input id="cliente" type="radio" name="tipo" value="cliente">
</div>
<div class="campo">
<label for="proveedor">Proveedor</label>
<input id="proveedor" type="radio" name="tipo" value="proveedor">
</div>
<div class="campo">
<label for="categoria">Categoría de Interés</label>
<input list="categorias" name="categorias">
<datalist id="categorias">
<option value="Cocina">
<option value="Exterior">
<option value="Recamaras">
<option value="Oficina">
<option value="Televisión">
</datalist>
</div>
</fieldset>
<input class="btn" type="submit" value="Enviar Formulario" >
</form>
</main>
<footer class="site-footer">
<div class="grid-footer contenedor">
<div>
<h3>Categorías</h3>
<nav class="footer-menu">
<a href="#">Cocina</a>
<a href="#">Oficina</a>
<a href="#">Jardín</a>
<a href="#">Cochera</a>
<a href="#">Dormitorios</a>
</nav>
</div>
<div>
<h3>Sobre Nosotros</h3>
<nav class="footer-menu">
<a href="#">Nuestra Historia</a>
<a href="#">Misión, Visión y Valores</a>
<a href="#">Carreras</a>
<a href="#">Política de Privacidad</a>
<a href="#">Términos del Servicio</a>
</nav>
</div>
<div>
<h3>Soporte</h3>
<nav class="footer-menu">
<a href="#">Preguntas Frecuentes</a>
<a href="#">Ayuda en línea</a>
<a href="#">Confianza y Seguridad</a>
</nav>
</div>
</div>
<p class="copyright">Todos los derechos Reservados, TiendaMuebles</p>
</footer>
</body>
</html>