-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path25_gallery.html
More file actions
20 lines (19 loc) · 790 Bytes
/
25_gallery.html
File metadata and controls
20 lines (19 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Q.25 Image Gallery</title>
</head>
<body>
<h1>Image Gallery</h1>
<img src="images/boudhanath.jpg" alt="Image 1" align="left" hspace="10" vspace="5" />
<img src="images/everest.jpg" alt="Image 2" align="right" hspace="10" vspace="5" />
<br />
<img src="images/pokhara.jpg" alt="Image 3" align="left" hspace="10" vspace="5" />
<img src="images/cloud.png" alt="Image 4" align="right" hspace="10" vspace="5" />
<br />
<img src="images/droplets.png" alt="Image 5" align="left" hspace="10" vspace="5" />
<img src="images/website.jpg" alt="Image 6" align="right" hspace="10" vspace="5" />
</body>
</html>