-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
25 lines (25 loc) · 879 Bytes
/
Copy pathgallery.html
File metadata and controls
25 lines (25 loc) · 879 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photo gallery page</title>
<link rel="shortcut icon" href="/images/download (2).webp" type="image/x-icon">
</head>
<body>
<h1>Photo Gallery</h1>
<div class="gallery container">
<div class="gallery-row">
<figure>
<img src="/panda.webp" alt="lion" width="90%" height="600px">
<figcaption>A Panda roaming in the Forest </figcaption>
<img src="/images/download (2).webp" alt="a tiger" width="90%" height="600px">
<figcaption>A Tiger Rsting On Top Of A Stone</figcaption>
<img src="/images/download (1).webp" alt=" a zebra" width="90%" height="600px">
<figcaption>A Small Zebra With It Mother</figcaption>
<a href="/animals.html">Animals Page</a>
</figure>
</div>
</div>
</body>
</html>