-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
48 lines (41 loc) · 1.35 KB
/
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
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gallery</title>
<link rel="stylesheet" type="text/css" href="classes.css">
</head>
<body>
<table width="100%">
<tbody>
<tr>
<td>
<img src="images/Logo.png"/>
</td>
<td>
<a href="news.html">Middle-Earth</a>
</td>
<td>
<a href="contactus.html">Contact us</a>
</td>
<td>
<a href="gallery.html">Gallery</a>
</td>
</tr>
</tbody>
</table>
<h1 style="margin-left:50px">Gallery</h1>
<div style="margin-left:50px" class="imgtest">
<img src ="images/gallery/image1.jpg" width="300"/>
<img src ="images/gallery/image2.jpg" width="300"/>
<img src ="images/gallery/image3.jpg" width="300"/>
</div>
<div style="margin-left:50px" class="imgtest">
<img src ="images/gallery/image4.jpg" width="300"/>
<img src ="images/gallery/image5.jpg" width="300"/>
<img src ="images/gallery/image6.jpg" width="300"/>
</div>
</body>
</html>