-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
52 lines (49 loc) · 1.25 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<title>Photo Gallery</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Photo Gallery</h1>
</header>
<nav>
<ul class="navigation">
<li><a href="index.html">Home</a></li>
<li><a href="qualifications.html">Qualifications</a></li>
<li><a href="achievements.html">Achievements</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="gallery.html">Photo Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<section class="gallery-section">
<div class="photo-grid">
<div class="photo">
<img src="p1.jpg" alt="Photo 1">
</div>
<div class="photo">
<img src="p2.jpg" alt="Photo 2">
</div>
<div class="photo">
<img src="p3.jpg" alt="Photo 3">
</div>
<div class="photo">
<img src="p30.jpg" alt="Photo 4">
</div>
<div class="photo">
<img src="p4.jpg" alt="Photo 5">
</div>
<div class="photo">
<img src="p5.jpg" alt="Photo 6">
</div>
</div>
</section>
</main>
<footer>
<p>© 2023 My Personal Website</p>
</footer>
</body>
</html>