-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathimagegallery.html
More file actions
38 lines (34 loc) · 1.07 KB
/
imagegallery.html
File metadata and controls
38 lines (34 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Image Gallery</title>
<link rel="stylesheet" type="text/css" href="imagegallery.css">
</head>
<body>
<h1 style=" text-align: center;">Image gallery</h1>
<div class="gallery">
<a target="_blank" href="image1.jpg">
<img src="image1.jpg" alt="Hacktoberfest" width="600" height="400">
</a>
<div class="desc">Description of image can be added here.</div>
</div>
<div class="gallery">
<a target="_blank" href="image2.jpg">
<img src="image2.jpg" alt="Hacktoberfest" width="600" height="400">
</a>
<div class="desc">Description of image can be added here.</div>
</div>
<div class="gallery">
<a target="_blank" href="image1.jpg">
<img src="image1.jpg" alt="Hacktoberfest" width="600" height="400">
</a>
<div class="desc">Description of image can be added here.</div>
</div>
<div class="gallery">
<a target="_blank" href="image2.jpg">
<img src="image2.jpg" alt="Hacktoberfest" width="600" height="400">
</a>
<div class="desc">Description of image can be added here.</div>
</div>
</body>
</html>