-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (67 loc) · 2.62 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refrigeración y Aires Acondicionados</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Tu Empresa de Refrigeración</h1>
<nav>
<ul>
<li><a href="#inicio">Inicio</a></li>
<li><a href="#servicios">Servicios</a>
<li><a href="#contacto"> Contacto </a></li>
<ul class="submenu">
<li><a href="#instalacion">Instalación</a></li>
<li><a href="#mantenimiento">Mantenimiento</a></li>
</ul>
</ul>
</nav>
<!-- Enlaces con logotipos -->
<div class="header-links">
<a href="https://api.whatsapp.com/send?phone=123456789" target="_blank">
<img src="whatsapp-logo.png" alt="WhatsApp">
</a>
<a href="https://www.facebook.com/tuempresa" target="_blank">
<img src="facebook-logo.png" alt="Facebook">
</a>
<a href="https://www.instagram.com/tuempresa" target="_blank">
<img src="instagram-logo.png" alt="Instagram">
</a>
</div>
</header>
<section id="inicio">
<h2>Bienvenido a nuestra empresa</h2>
<p>Somos expertos en refrigeración y aires acondicionados.</p>
</section>
<section id="servicios">
<h2>Nuestros Servicios</h2>
<ul>
<li>Servicio de instalación de aires acondicionados</li>
<li>Mantenimiento preventivo y reparación de refrigeradores</li>
<li>Asesoría en sistemas de climatización</li>
</ul>
</section>
<section id="contacto">
<h2>Contacto</h2>
<p>Ponte en contacto con nosotros:</p>
<address>
Correo electrónico: <a href="mailto:info@tuempresa.com">info@tuempresa.com</a><br>
Teléfono: <a href="tel:+123456789">+123 456 789</a>
</address>
</section>
<section class="parallax-section">
<div class="parallax-content">
<h2>Un título con efecto de paralaje</h2>
<p>Texto de ejemplo para la sección de paralaje.</p>
</div>
</section>
<footer>
<p>© 2023 Tu Empresa de Refrigeración. Todos los derechos reservados.</p>
</footer>
<script src="./sebas.js"></script>
</body>
</html>