-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
98 lines (87 loc) · 2.19 KB
/
gallery.html
File metadata and controls
98 lines (87 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gallery | Boyue Du</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Orbitron', sans-serif;
background: linear-gradient(180deg, #0f172a, #1e293b);
color: white;
margin: 0;
padding: 2em;
text-align: center;
}
h1 {
font-size: 3em;
margin-bottom: 1.5em;
}
.gallery-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 3em;
margin-top: 2em;
}
.gallery-card {
background-color: #1e293b;
border: 2px solid #334155;
border-radius: 20px;
width: 380px;
padding: 2em;
text-decoration: none;
color: white;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
transform: scale(1.08);
box-shadow: 0 0 30px #38bdf8;
border-color: #38bdf8;
}
.gallery-card h2 {
margin-top: 1em;
font-size: 2em;
}
.gallery-card img {
width: 100%;
height: 240px;
object-fit: cover;
border-radius: 14px;
}
footer {
margin-top: 5em;
font-size: 0.9em;
color: #94a3b8;
}
</style>
</head>
<body>
<h1>Explore My Gallery</h1>
<div class="gallery-grid">
<a href="gallery_landscape.html" class="gallery-card">
<img src="gallery_landscape.jpg" alt="Landscape">
<h2>Landscape</h2>
</a>
<a href="gallery_art.html" class="gallery-card">
<img src="gallery_art.jpg" alt="Art Design">
<h2>Art Design</h2>
</a>
<a href="gallery_engineering.html" class="gallery-card">
<img src="gallery_engineering.jpg" alt="Engineering">
<h2>Engineering</h2>
</a>
<a href="gallery_cooking.html" class="gallery-card">
<img src="gallery_cooking.jpg" alt="Plated Passion">
<h2>Plated Passion</h2>
</a>
<a href="gallery_music.html" class="gallery-card">
<img src="gallery_music.jpg" alt="Musician">
<h2>Music Passion</h2>
</a>
</div>
<footer>
© 2025 Boyue Du | Designed with HTML & CSS
</footer>
</body>
</html>