-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 1.03 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
<!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="style.css">
</head>
<body>
<h1>Image Gallery</h1>
<div class="container">
<a href="Chrysanthemum.jpg" download=""><img src="Chrysanthemum.jpg" class="img"></a>
<a href="Desert.jpg"download><img src="Desert.jpg" class="img"></a>
<a href="Hydrangeas.jpg" download=""><img src="Hydrangeas.jpg" class="img"></a>
<a href="Jellyfish.jpg" download=""><img src="Jellyfish.jpg" class="img"></a>
<a href="Koala.jpg" download=""><img src="Koala.jpg" class="img"></a>
<a href="Lighthouse.jpg" download=""><img src="Lighthouse.jpg" class="img"></a>
<a href="Penguins.jpg" download=""><img src="Penguins.jpg" class="img"></a>
<a href="Tulips.jpg" download=""><img src="Tulips.jpg" class="img"></a>
</div>
<h2>click the images to download</h2>
</body>
</html>