-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (83 loc) · 2.34 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<style>
body {
font-family: Georgia, 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
}
header {
color: #000000;
text-align: center;
padding: 10px 0;
font-size: 1.5rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.gallery-item {
width: calc(33.33% - 20px);
margin: 10px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
transition: transform 0.2s;
}
.gallery-item:hover {
transform: scale(1.05);
}
.gallery-item img {
max-width: 100%;
height: auto;
}
footer {
text-align: center;
padding: 20px 0;
color: black;
font-weight: 700;
}
</style>
</head>
<body style="background-image: url(bg.webp);">
<header style="background-image: url(headerbg.webp);">
<h1>Some Quick snapshots of my life!!</h1>
</header>
<div class="container">
<div class="gallery-item">
<img src="image1.jpg" alt="Image 1">
</div>
<div class="gallery-item">
<img src="image2.jpg" alt="Image 2">
</div>
<div class="gallery-item">
<img src="image3.jpg" alt="Image 3">
</div>
<div class="gallery-item">
<img src="image4.jpg" alt="Image 4">
</div>
<div class="gallery-item">
<img src="image5.jpg" alt="Image 5">
</div>
<div class="gallery-item">
<img src="image6.jpg" alt="Image 6">
</div>
<div class="gallery-item">
<img src="image7.jpg" alt="Image 7">
</div>
<div class="gallery-item">
<img src="image8.jpg" alt="Image 8">
</div>
<div class="gallery-item">
<img src="image9.jpg" alt="Image 9">
</div>
</div>
<footer>
© @Evaan Antony Philip 2023; Don't Stalk heh :)
</footer>
</body>
</html>