-
Notifications
You must be signed in to change notification settings - Fork 1
/
contactos.html
80 lines (78 loc) · 3.44 KB
/
contactos.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./img/NutriMixs.png" type="image/x-icon">
<link href='https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="./css/style.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./css/sweetalert2.min.css">
<title>Contactos - NutriMixs</title>
</head>
<body>
<header class="header-two">
<nav class="nav-two">
<div class="logo">
<a href="/" class="">
<img src="./img/NutriMixs.png" alt="nutri mixs logo">
<span>NutriMixs</span>
</a>
</div>
<div class="hamburger" id="icono">
<span><i id="icon" class='bx bx-menu'></i></span>
</div>
<div class="enlaces uno" id="enlaces">
<a href="/">Inicio</a>
<!-- <a href="">Acerca de Nosotros</a> -->
<a href="productos.html">Productos</a>
<a href="beneficios.html">Beneficios</a>
</div>
</nav>
</header>
<main class="main-contactos section">
<div class="cont-contactos">
<div class="information-contact">
<h1>Información de Contacto</h1>
<h2>¡Comunícate con nosotros!</h2>
<p>Coop. Pueblo en Marcha</p>
<a href="mailto:[email protected]">[email protected]</a>
<a href="tel:+593963160436">0963160436</a>
</div>
<form action="" class="form-contactos">
<h3>Envianos un Mensaje</h3>
<div class="form-group">
<input type="text" name="nonmbre" id="name" placeholder="Nombres">
<input type="text" id="phone" name="phone" placeholder="Teléfono">
</div>
<div class="form-group">
<input type="email" name="email" id="email" placeholder="Email">
<input type="text" id="subject" name="subject" placeholder="Asunto">
</div>
<div class="form-group">
<textarea name="message" id="message" cols="30" rows="10" placeholder="Mensaje">
</textarea>
</div>
<input type="submit" value="ENVIAR" id="enviarEmail">
</form>
</div>
</main>
<footer class="contenedor footer">
<p class="copyright">© Todos los derechos reservados </p>
<div class="social-media">
<ul>
<li><a href="https://www.facebook.com/sunutrimixs" target="_blank"><i class='bx bxl-facebook-circle' ></i></a></li>
<li><a href="#"><i class='bx bxl-instagram' ></i></a></li>
<li><a href="https://api.whatsapp.com/send?phone=593963160436&text=Hola,%20me%20gustaría%20obtener%20información%20sobre%20sus%20productos" target="_blank"><i class='bx bxl-whatsapp' ></i></a></li>
</ul>
</div>
</footer>
<script src="./js/sweetalert2.all.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="./js/contactos.js"></script>
<script src="./js/main.js"></script>
<script>
MenuResponsive();
</script>
</body>
</html>