-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDENISSE PRACT 2.txt
More file actions
102 lines (88 loc) · 2.58 KB
/
Copy pathDENISSE PRACT 2.txt
File metadata and controls
102 lines (88 loc) · 2.58 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>San Carlos - Paraíso de Semana Santa</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f0f8ff;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #1e90ff;
color: white;
text-align: center;
padding: 2rem;
}
h1 {
font-family: 'Georgia', serif;
}
section {
padding: 2rem;
}
.info {
background-color: #fff8dc;
border-left: 6px solid #ffa500;
margin: 2rem auto;
padding: 1.5rem;
max-width: 800px;
border-radius: 10px;
}
.info h2 {
color: #dc143c;
}
.gallery {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.gallery img {
width: 250px;
height: 160px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
footer {
background-color: #4682b4;
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>San Carlos, Nuevo Guaymas</h1>
<p>¡Tu sitio ideal paradisiaco para Semana Santa!</p>
</header>
<section class="info">
<h2>¿Por qué elegir San Carlos?</h2>
<p>San Carlos es conocido por sus aguas cristalinas, playas de arena dorada y paisajes impresionantes. Es el lugar perfecto para descansar, divertirse y reconectarse con la naturaleza en Semana Santa.</p>
<div class="gallery">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/San_Carlos_Sonora_Mexico_view.jpg/800px-San_Carlos_Sonora_Mexico_view.jpg" alt="Vista de San Carlos">
<img src="https://www.viajabonito.mx/wp-content/uploads/2019/05/que-hacer-en-san-carlos-sonora.jpg" alt="Playa de San Carlos">
<img src="https://elsouvenir.com/wp-content/uploads/2020/01/San-Carlos-Sonora-destinos-de-playa-en-m%C3%A9xico.jpg" alt="Atardecer en San Carlos">
</div>
</section>
<section class="info">
<h2>Actividades imperdibles</h2>
<ul>
<li>Snorkel en el Cañón del Nacapule</li>
<li>Paseos en lancha y avistamiento de delfines</li>
<li>Senderismo en los cerros cercanos</li>
<li>Degustación de mariscos frescos</li>
</ul>
</section>
<footer>
Página diseñada por: <strong>Ivonne Denisse Ibarra Meza</strong><br>
© 2025
</footer>
</body>
</html>