-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Gallery</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="gallery-container">
<h1>Image Gallery</h1>
<div class="filters">
<button class="filter-btn" data-filter="all">All</button>
<button class="filter-btn" data-filter="nature">Nature</button>
<button class="filter-btn" data-filter="city">City</button>
</div>
<div class="gallery">
<div class="gallery-item nature">
<img src="images/image1.jpg" alt="Nature Image 1">
</div>
<div class="gallery-item city">
<img src="images/image2.jpg" alt="City Image 1">
</div>
<div class="gallery-item nature">
<img src="images/image3.jpg" alt="Nature Image 2">
</div>
<!-- Add more images here -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>