-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
40 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./src/css/reset.css" crossorigin="anonymous" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Raleway"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans"
/>
<script type="module" src="main.js"></script>
<title>TechCompany - Contacto</title>
</head>
<body>
<header-component></header-component>
<my-text size="title" alignCenter="true" class="contact-title" color="#7f1b7e"
>Contact us</my-text
>
<my-text size="body" alignCenter="true">
¿Tienes un proyecto en mente? Estamos aquí para ayudarte. Completa el formulario con los detalles de tu idea y nuestro equipo se pondrá en contacto contigo lo antes posible.
Nos comprometemos a responder en un plazo de 48 horas.
</my-text>
<my-form></my-form>
<footer-component></footer-component>
</body>
</html>