-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (76 loc) · 2.29 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Escaparate - Contacto</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 1em 0;
text-align: center;
}
header h1 {
margin: 0;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 1em;
}
nav ul li a {
color: white;
text-decoration: none;
}
section {
padding: 2em;
text-align: center;
}
.contact-info {
max-width: 600px;
margin: 0 auto;
text-align: left;
}
footer {
background-color: #333;
color: white;
padding: 1em 0;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Creativa Decor</h1>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="about.html">Sobre Nosotros</a></li>
<li><a href="products.html">Productos</a></li>
<li><a href="contact.html">Contacto</a></li>
</ul>
</nav>
</header>
<section id="contact">
<h2>Contacto</h2>
<div class="contact-info">
<p><strong>Correo Electrónico:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Teléfono:</strong> +34 123 456 789</p>
<p><strong>Dirección:</strong> Calle Falsa 123, 28080 Madrid, España</p>
<p>Estamos aquí para ayudarte. Si tienes alguna pregunta sobre nuestros productos o servicios, no dudes en ponerte en contacto con nosotros. Nuestro equipo estará encantado de asistirte.</p>
</div>
</section>
<footer>
<p>© 2024 Creativa Decor. Todos los derechos reservados.</p>
</footer>
</body>
</html>