-
Notifications
You must be signed in to change notification settings - Fork 0
/
photo_gallery.html
42 lines (31 loc) · 1.25 KB
/
photo_gallery.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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Phoyo Gallery</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src='main.js'></script>
</head>
<body>
<h1 align = "center"><u>My Photo Gallery</u></h1>
<table border="1" width = "1000" height = 150" align = "center">
<tr bgcolor="yellow" height = "100">
<th width = "260">Image</th>
<th>Description</th>
<th>Location</th>
</tr>
<tr>
<td align = "center"><img src="assets/kandy.jpg" width="250px" height="250px" alt="Image of kandy"></td>
<td align = "center">Trip to Kandy</td>
<td align = "center"><a href="https://www.wiki.org/kandy">Kandy</a></td>
</tr>
<tr>
<td align = "center"><img src="assets/galle.JPG" width="250px" height="250px"alt="Image of Galle"></td>
<td align = "center">My 21<sup>st</sup> Birthday</td>
<td align = "center"><a href="https://www.wiki.org/galle" target="_blank">Galle</a></td>
</tr>
</table>
</body>
</html>