-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
executable file
·67 lines (65 loc) · 2.78 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
<!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">
<link rel="stylesheet" href="/estilos/contacto.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=Roboto:wght@100&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/img/favicon.png">
<title>Contacto</title>
</head>
<body>
<header>
<h1>Contacto</h1>
</header>
<nav class="navegador">
<a href="index.html">Inicio</a>
<a href="about.html">Sobre mi</a>
<a href="clientes.html">Clientes</a>
<a href="contacto.html">Contacto</a>
</nav>
<main>
<section class="texto-principal">
<h2>¿Quieres contactarme?</h2>
<p>
Si tienes alguna duda o quieres contactarme, puedes hacerlo a través de diversos medios.
</p>
</section>
<section class="correo">
<h2>Correo electrónico</h2>
<img src="https://cdn-icons-png.flaticon.com/512/281/281769.png" alt="gmail">
<p>
También puedes contactarme a través de mi correo electrónico.
</p>
<a href="mailto:[email protected]" class="boton">Enviar correo</a>
</section>
<section class="redes-sociales">
<h2>Redes sociales</h2>
<p>
También puedes contactarme a través de mis redes sociales.
</p>
<div class="iconos">
<a href="https://www.facebook.com/" id="a">
<img src="https://cdn.icon-icons.com/icons2/1826/PNG/512/4202110facebooklogosocialsocialmedia-115707_115594.png" alt="Facebook">
</a>
<a href="https://www.instagram.com/" id="b">
<img src="https://cdn.pixabay.com/photo/2021/06/15/12/17/instagram-6338401_640.png" alt="Instagram">
</a>
<a href="https://discord.com/" id="c">
<img src="https://logodownload.org/wp-content/uploads/2017/11/discord-logo-4-1.png" alt="Discord">
</a>
</div>
</section>
<section class="mensaje">
<p>Recuerda que puedes llenar el formulario de la pagina principal, será un placer atenderte.</p>
<a href="index.html" class="boton">Ir a la pagina principal</a>
</section>
</main>
<footer>
<p>Todos los derechos reservados © 2023 Rodrigo Villaseñor</p>
</footer>
</body>
</html>