-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
248 lines (174 loc) · 10.3 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Contacto - Mi Proyecto</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CDN de Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Hoja de estilos Personalizada -->
<link rel="stylesheet" href="assets/css/estilos.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/6be6f14cdc.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="min-h-full">
<!-- Menú -->
<nav class="nav flex flex-wrap items-center justify-between px-4 bg-gray-800 px-20">
<div class="flex flex-no-shrink items-center mr-6 py-3 text-grey-darkest">
<span class="font-semibold text-xl tracking-tight text-white">Mi Proyecto</span>
</div>
<input class="menu-btn hidden" type="checkbox" id="menu-btn">
<label class="menu-icon block cursor-pointer md:hidden px-2 py-4 relative select-none" for="menu-btn">
<span class="navicon bg-grey-darkest flex items-center relative"></span>
</label>
<ul class="menu border-b md:border-none flex justify-end list-reset m-0 w-full md:w-auto">
<li class="border-t md:border-none">
<a href="index.html" class="block md:inline-block px-4 py-3 no-underline text-grey-darkest hover:text-grey-darker text-white ">Home</a>
</li>
<li class="border-t md:border-none">
<a href="nosotros.html" class="block md:inline-block px-4 py-3 no-underline text-grey-darkest hover:text-grey-darker text-white ">Nosotros</a>
</li>
<li class="border-t md:border-none">
<a href="servicios.html" class="block md:inline-block px-4 py-3 no-underline text-grey-darkest hover:text-grey-darker text-white ">Servicios</a>
</li>
<li class="border-t md:border-none">
<a href="contacto.html" class="block md:inline-block px-4 py-3 no-underline text-grey-darkest hover:text-grey-darker font-bold text-white ">Contacto</a>
</li>
</ul>
</nav>
<main class="mt-10">
<!-- Nosotros (Introducción) -->
<div class="container ml-auto mr-auto flex flex-wrap items-start mt-8">
<div class="w-full pl-5 lg:pl-2 mb-4 mt-4">
<h1 class="text-3xl font-extrabold text-center"> Contacto </h1>
</div>
<div class="w-full pl-5 lg:pl-2 mb-4 mt-4 pr-4">
<!-- Texto de Introducción (Contacto) -->
<p>
Utiliza el formulario y los otros medios que tenemos a continuación, para contactarnos.
</p>
</div>
</div>
<!-- Formulario y Datos de Contacto -->
<div class="container ml-auto mr-auto flex flex-wrap items-start mt-2">
<div class="w-full md:w-1/2 lg:w-1/1 pl-5 pr-5 mb-5 lg:pl-2 lg:pr-2">
<!-- Formulario -->
<form class="bg-white px-8 pt-6 pb-8 mb-4">
<div class="mb-4">
<label class="block text-gray-700 text-sm font-bold mb-2" for="nya">
Nombres y Apellidos
</label>
<input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" id="nya" type="text" placeholder="Carlos Torres" required>
</div>
<div class="mb-4">
<label class="block text-gray-700 text-sm font-bold mb-2" for="email">
Email
</label>
<input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" id="email" type="email" placeholder="ctorres@mail.com" required>
</div>
<div class="mb-4">
<label class="block text-gray-700 text-sm font-bold mb-2" for="asunto">
Asunto
</label>
<input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" id="asunto" type="text" placeholder="Venta de Productos" required>
</div>
<div class="mb-4">
<label class="block text-gray-700 text-sm font-bold mb-2" for="mensaje">
Mensaje
</label>
<textarea class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" id="mensaje" rows="5" placeholder="El mensaje" required></textarea>
</div>
<div class="flex items-center justify-between">
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline" type="submit">
Aceptar
</button>
</div>
</form>
</div>
<div class="w-full md:w-1/2 lg:w-1/1 pl-5 pr-5 mb-2 lg:pl-2 lg:pr-2">
<div class="bg-white m-h-64 p-2">
<!-- Datos de Contacto -->
<div class="rounded-lg p-4 flex flex-col">
<div class="lc">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
</svg> <p class="cc pl-2 pb-4"> Av. Lunitas # 348 - Lima, Perú </p>
</div>
<div class="lc">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg> <p class="cc pl-2 pb-4"> contacto@miproyecto.com </p>
</div>
<div class="lc">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z" />
</svg> <p class="cc pl-2 pb-4"> 555-0000 </p>
</div>
<div class="lc">
<a href="#" title="Facebook" class="mr-1">
<i class="fab fa-facebook-square fa-2x"></i>
</a>
<a href="#" title="Twitter" class="mr-1">
<i class="fab fa-twitter-square fa-2x"></i>
</a>
<a href="#" title="Instagram" class="mr-1">
<i class="fab fa-instagram-square fa-2x"></i>
</a>
<a href="#" title="YouTube" class="mr-1">
<i class="fab fa-youtube-square fa-2x"></i>
</a>
<a href="#" title="WhatsApp" class="mr-1">
<i class="fab fa-whatsapp-square fa-2x"></i>
</a>
<a href="#" title="Telegram" class="mr-1">
<i class="fab fa-telegram-square fa-2x"></i>
</a>
<a href="#" title="Tik Tok" class="mr-1">
<i class="fab fa-tiktok fa-2x"></i>
</a>
<a href="#" title="Podcasts en Spotify" class="mr-1">
<i class="fab fa-spotify fa-2x"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Mapa de Google -->
<div class="container ml-auto mr-auto flex flex-wrap items-start">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d26248.181673139166!2d-77.04630589832146!3d-12.056208580479352!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1ses-419!2spe!4v1643491913841!5m2!1ses-419!2spe" height="450" class="inset-0 w-full p-5" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<!-- Newsletter -->
<div class="mx-auto max-w-7xl p-4">
<div class="w-full mb-4 mt-4">
<h1 class="text-3xl font-extrabold text-center"> Newsletter </h1>
</div>
<form method="post">
<div class="md:flex md:items-center mb-6">
<div class="md:w-1/2">
<label class="block text-gray-500 font-bold md:text-right mb-1 md:mb-0 pr-4" for="inline-full-name">
Email:
</label>
</div>
<div class="md:w-2/3 mr-2">
<input class="appearance-none border-2 border-gray-200 rounded w-full py-2 px-4 text-gray-700 leading-tight focus:outline-none focus:bg-white focus:border-purple-500" id="inline-full-name" type="email" placeholder="micorreo@mail.com" required>
</div>
<div class="md:w-2/3">
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline" type="submit">
Aceptar
</button>
</div>
</div>
</form>
</div>
</main>
</div>
<!-- Footer -->
<footer class="footer-1 bg-gray-100 py-8 sm:py-12 text-center">
<div class="container mx-auto">
<p>©Mi Proyecto <script>document.write(new Date().getFullYear())</script>. Todos los derechos reservados.</p>
</div>
</footer>
</body>
</html>