-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto.html
102 lines (95 loc) · 2.87 KB
/
photo.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
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photos</title>
<link rel="stylesheet" href="photo.css">
<style>
body {
margin: 0;
padding: 0;
}
.img {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
height: 100vh;
}
.img div {
width: calc(33.33% - 20px);
margin: 10px;
display: inline-block;
margin-top: 20px; /* added top margin */
margin-bottom: 20px; /* added bottom margin */
}
.img img {
width: 100%;
height: 360px;
object-fit: cover;
border-radius: 10px;
}
@media only screen and (max-width: 768px) {
.img div {
width: calc(50% - 20px);
}
}
/* Add styles for lyrics display */
.lyrics {
font-size: 18px;
font-family: Arial, sans-serif;
color: #333;
padding: 20px;
background-color: #f7f7f7;
border: 1px solid #ddd;
border-radius: 10px;
margin: 20px;
}
.lyrics span {
display: block;
}
.lyrics span.active {
color: #337ab7;
font-weight: bold;
}
</style>
</head>
<body>
<h1>birthday photos</h1>
<div class="img">
<div>
<a href="index.html"><img src="./SAVE_20240418_200641.jpg" alt="Image 1"></a>
</div>
<div>
<a href="index.html"><img src="./SAVE_20240418_205506.jpg" alt="Image 2"></a>
</div>
<div>
<a href="index.html"><img src="./SAVE_20240418_205518.jpg" alt="Image 1"></a>
</div>
<div>
<a href="index.html"><img src="./SAVE_20240418_205533.jpg" alt="Image 2"></a>
</div>
<div>
<a href="index.html"><img src="./SAVE_20240418_211031.jpg" alt="Image 1"></a>
</div>
<div>
<a href="index.html"><img src="./SAVE_20240418_211047.jpg" alt="Image 2"></a>
</div>
<!-- Add more images as needed -->
</div>
<div class="lyrics">
<!--- <span>Today is all about you</span>
<span>Kavitha mam it's true</span>
<span>We celebrate your day</span>
<span>In every single way</span>
<span>Candles on the cake</span>
<span>Wishes we will make</span>
<span>Gifts and smiles around</span>
<span>Happiness we've found</span>
<span>Happy birthday Kavitha</span> -->
</div>
<audio id="audio" controls>
<source src="./song.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>