-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
51 lines (43 loc) · 1.36 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
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<title>A.P.Roberts Ltd - Home</title>
<link rel="stylesheet" href="stylesheets/style.css" type="text/css">
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<header id='head'>
<img src='images/titlepng.png'>
</header>
<ul id=navbar>
<li><a href='index.html'>Home</a></li>
<li><a href='gallery.html'>Gallery</a></li>
<li><a href='testimonials.html'>Testimonials</a></li>
<li><a href='contact.html'>Contact </a></li>
</ul>
<ul id=gallery_navbar>
<li><a href='gallery.html'>Main Gallery</a></li>
<li><a href='gallery_wg.html'>'White Gables' - Motcombe</a></li>
<li><a href='gallery_ph.html'>'Paddock House' - Stour Row</a></li>
</ul>
<section role="main">
<article>
<h1>Gallery</h1>
<div class=gallery_div>
<img src='images/g1.JPG' class=gallery_images>
<img src='images/g2.JPG' class=gallery_images>
<img src='images/g3.JPG' class=gallery_images>
<img src='images/g4.JPG' class=gallery_images>
<img src='images/g5.JPG' class=gallery_images>
<img src='images/g6.JPG' class=gallery_images>
<img src='images/g7.JPG' class=gallery_images>
</div>
</article>
</section>
<footer>
<p>© Copyright 2016 A.P. Roberts Ltd </p>
</footer>
</body>
</html>