0% found this document useful (0 votes)
11 views2 pages

HTML

This document is an HTML webpage titled 'Página de Imágenes' designed to showcase various images. It features a welcoming header and a grid layout displaying six images related to nature, cities, mountains, beaches, forests, and space. The page is styled with CSS for a clean and modern appearance.

Uploaded by

santiago
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

HTML

This document is an HTML webpage titled 'Página de Imágenes' designed to showcase various images. It features a welcoming header and a grid layout displaying six images related to nature, cities, mountains, beaches, forests, and space. The page is styled with CSS for a clean and modern appearance.

Uploaded by

santiago
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página de Imágenes</title>
<style>
body {
font-family: sans-serif;
text-align: center;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}

h1 {
color: #333;
padding: 20px 0;
}

.image-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}

.image-item {
margin: 10px;
max-width: 300px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
}

.image-item img {
width: 100%;
height: auto;
display: block;
}

.image-item p {
padding: 10px;
margin: 0;
background-color: #fff;
}
</style>
</head>
<body>
<h1>¡Bienvenidos a mi página de imágenes!</h1>
<div class="image-container">
<div class="image-item">
<img src="https://source.unsplash.com/300x200/?nature,water"
alt="Naturaleza">
<p>Naturaleza y Agua</p>
</div>
<div class="image-item">
<img src="https://source.unsplash.com/300x200/?city,night" alt="Ciudad
Nocturna">
<p>Ciudad de Noche</p>
</div>
<div class="image-item">
<img src="https://source.unsplash.com/300x200/?mountains,sky"
alt="Montañas y Cielo">
<p>Montañas y Cielo</p>
</div>
<div class="image-item">
<img src="https://source.unsplash.com/300x200/?beach,sunset" alt="Playa
al atardecer">
<p>Playa al atardecer</p>
</div>
<div class="image-item">
<img src="https://source.unsplash.com/300x200/?forest,trees"
alt="Bosque de árboles">
<p>Bosque de árboles</p>
</div>
<div class="image-item">
<img src="https://source.unsplash.com/300x200/?space,stars"
alt="Espacio y estrellas">
<p>Espacio y estrellas</p>
</div>
</div>
</body>
</html>

You might also like