-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
186 lines (152 loc) · 10.1 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<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>Contacto</title>
<!--CSS-->
<link rel="stylesheet" href="./css/contact.css">
<!--Favicon-->
<link rel="shortcut icon" href="./img/FaviconCoDEVC.ico" type="image/x-icon">
<!--Google fonts-->
<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=Merriweather:wght@300&display=swap" rel="stylesheet">
<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=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
<!--Animaciones-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!--Iconos/Fontawesome-->
<script src="https://kit.fontawesome.com/510cf6bb16.js" crossorigin="anonymous"></script>
<!--Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body>
<header>
<article id="header-container1">
<section class="logo">
<a href="index.html" class="img_box">
<img class="animate__animated animate__bounce" src="./img/logo_sin_fondo_reducido.png" alt="Logo">
</a>
</section>
<section class="search">
<input type="search" placeholder="Buscar">
</section>
</article>
<article id="header-container2">
<nav class="menu">
<ul>
<li><a href="./index.html"><i class="fa-solid fa-house fa-lg"></i></a></li>
<li><a href="./services.html">Servicios</a></li>
<li><a href="./about.html">Nosotros</a></li>
<li><a href="./contact.html"><i class="fa-sharp fa-solid fa-envelope"></i></a></li>
</ul>
</nav>
</article>
</header>
<main>
<h1>
<span class="titulo1">Conexión<br>CoDEVConnect</span>
</h1>
<section id="flex-container0">
<h2 id="subtitulo" class="flex-item0 h2">Contacto</h2>
<section class="flex-item0">
<form action="#" method="get">
<fieldset id="flex-container1">
<div class="container-fluid">
<legend class="legend">Datos personales</legend>
<div class="mb-3">
<label for="businessName" class="form-label">Nombre del emprendimiento</label>
<input type="text" class="form-control" id="businessName" name="businessName" placeholder="Nombre del emprendimiento" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="name" class="form-label">Nombre</label>
<input type="text" class="form-control" id="name" name="name" placeholder="Nombre">
</div>
<div class="mb-3">
<label for="lastname" class="form-label">Apellido</label>
<input type="text" class="form-control" id="lastname" name="lastname" placeholder="Apellido">
</div>
<div class="mb-3">
<label for="email" class="form-label">E-mail</label>
<input type="email" class="form-control" id="email" name="email" placeholder="maria@gmail.com" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">Nunca vamos a compartir tu e-mail.</div>
</div>
<div class="mb-3">
<label for="phone" class="form-label">Teléfono</label>
<input type="number" class="form-control" id="phone" name="phone">
</div>
<label for="servicioRequerido" class="form-label">Servicio requerido:</label>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="disenoDeSitioWeb" value="Diseño de Sitio Web">
<label class="form-check-label" for="disenoDeSitioWeb">Diseño de Sitio Web</label>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="formacion" value="Formación">
<label class="form-check-label" for="formacion">Formación</label>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="marketing" value="Marketing">
<label class="form-check-label" for="marketing">Marketing</label>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="ciberseguridad" value="Ciberseguridad">
<label class="form-check-label" for="ciberseguridad">Ciberseguridad</label>
</div>
<button type="button" onclick="validarForm()">Enviar</button>
<button type="reset">Borrar todo</button>
</div>
</fieldset>
</form>
</section>
<h2 id="subtitulo" class="flex-item0 h2">Dónde nos encontrás</h2>
<section class="flex-item0">
<section id="flex-container2">
<section class="flex-item2 stios-codev">
<h3 class="lugar">En CABA - Argentina</h3>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7755.011618296259!2d-58.38642632531704!3d-34.59890096091772!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x95bccac87d0daf3f%3A0xb72626dc5b628786!2sCerrito%20720%2C%20C1010%20San%20Nicolas%2C%20Buenos%20Aires%2C%20Argentina!5e0!3m2!1ses-419!2suk!4v1679936654604!5m2!1ses-419!2suk" width="600" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="map"></iframe>
<p>Cerrito 720, Ciudad Autónoma de Buenos Aires.</p>
<p>Teléfono: (+54) 47737769</p>
<p>Email: buenosaires@codevconnect.com.ar</p>
</section>
<section class="flex-item2 stios-codev">
<h3 class="lugar">En Madrid - España</h3>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d10824.013832610803!2d-3.6876096329816064!3d40.422448688377976!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd4228997106b1b1%3A0xd4132c0d4e507cf8!2sAntonina%20Monasterio%20Mart%C3%ADnez!5e0!3m2!1ses-419!2suk!4v1679936854056!5m2!1ses-419!2suk" width="600" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="map"></iframe>
<p>C. de Alcalá, Madrid.</p>
<p>Teléfono: (+34) 624784595</p>
<p>Email: madrid@codevconnect.com.ar</p>
</section>
<section class="flex-item2 stios-codev">
<h3 class="lugar">En Cardiff - Gales (Reino Unido)</h3>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2484.788206404016!2d-3.184390948694487!3d51.48040177953071!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x486e1cafd43bc045%3A0x9da5bb0d30d2a4bf!2s5%20Westgate%20St%2C%20Cardiff%20CF10%201DD!5e0!3m2!1ses-419!2suk!4v1679937560044!5m2!1ses-419!2suk" width="600" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="map"></iframe>
<p>5 Westgate St, Cardiff.</p>
<p>Teléfono: (+44) 02920552678</p>
<p>Email: cardiff@codevconnect.com.ar</p>
</section>
</section>
</section>
</section>
</main>
<footer id="footer">
<section id="footer-container">
<nav class="social-icons flex-item-footer">
<p id="seguinos">Síguenos en...</p>
<a href="https://github.com/crettazminaglia/codo_a_codo_project_group18" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.twitter.com/" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/" target="_blank"><i class="fab fa-youtube"></i></a>
</nav>
</section>
<section id="copy-right">
<p>© Copyright CoDEVConnect - 2023</p>
</section>
</footer>
</body>
</html>
<!--Bootstrap Script-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<!--Validación del Form-->
<script src="./js/contact.js"> </script>