-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamor.html
More file actions
100 lines (97 loc) · 3.29 KB
/
amor.html
File metadata and controls
100 lines (97 loc) · 3.29 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feliz aniversario bebu</title>
<link rel="icon" href="tulip.png" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
background-color: #ffe6f2; /* Fondo rosa */
text-align: center;
color: #ff1493;
}
.container {
width: 80%;
margin: auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 15px;
margin-top: 20px;
}
.photo-frame {
width: 150px;
height: 150px;
border: 3px solid #ff69b4;
border-radius: 10px;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.photo-frame img {
width: 100%;
height: 100%;
object-fit: cover;
}
.photo-section {
margin-top: 30px;
}
.large-photo {
width: 80%;
max-width: 600px;
margin: auto;
border: 5px solid #ff69b4;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.buttons {
margin-top: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #ff69b4;
color: white;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background-color: #ff1493;
}
</style>
</head>
<body>
<div class="container">
<h1>Galería de Recuerdos 💕</h1>
<p>Poquitas fotos pero momentos muy especiales</p>
<div class="gallery">
<div class="photo-frame"><img src="foto2.jpeg" alt="Foto 1"></div>
<div class="photo-frame"><img src="hola.jpeg" alt="Foto 2"></div>
<div class="photo-frame"><img src="hola2.JPG" alt="Foto 3"></div>
<div class="photo-frame"><img src="foto3.jpeg" alt="Foto 1"></div>
<div class="photo-frame"><img src="foto4.jpeg" alt="Foto 2"></div>
<div class="photo-frame"><img src="foto5.jpeg" alt="Foto 3"></div>
<div class="photo-frame"><img src="foto6.jpeg" alt="Foto 4"></div>
<div class="photo-frame"><img src="foto7.jpeg" alt="Foto 5"></div>
<div class="photo-frame"><img src="foto8.jpeg" alt="Foto 6"></div>
<div class="photo-frame"><img src="foto9.jpeg" alt="Foto 7"></div>
</div>
<div class="photo-section">
<h2>Foto Especial</h2>
<img src="fotogrande.jpeg" alt="Foto Especial" class="large-photo">
</div>
<div class="buttons">
<a href="index.html" class="button">Volver</a>
</div>
</div>
</body>
</html>