-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
32 lines (32 loc) · 1.04 KB
/
gallery.html
File metadata and controls
32 lines (32 loc) · 1.04 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
<html>
<head><title>Gallery</title></head>
<body align="center">
<b>Welcome to the Gallery page! Here we have a relative url for this site, an absolute url for this site, and an absolute url for another site</b>
<br/>
<br/>
<table spacing="1" align="center">
<tr>
<td>
<img height="200px" src="http://localhost:5678/images/sun.jpg"/>
</td>
<td>
<img height="200px" src="/images/moon.jpg"/>
</td>
<td>
<img height="200px" src="http://www.eso.org/public/archives/images/screen/eso0837a.jpg"/>
</td>
</tr>
<tr>
<td align="center">
Absolute URL
</td>
<td align="center">
Relative URL
</td>
<td align="center">
External URL
</td>
</tr>
</table>
</body>
</html>