-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrochure.php
37 lines (34 loc) · 1.04 KB
/
brochure.php
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
<!DOCTYPE html>
<html lang="en">
<?php include 'head.php' ?>
<body>
<!-- Start Navbar -->
<?php
$current = 'brochure';
include 'navbar.php';
?>
<!-- End Navbar -->
<!-- Start Header -->
<div id="header">
</div>
<!-- End Header -->
<!-- Start Body -->
<div class="container text-center">
<img src="img/divider.png" alt="Page Divider" id="divider"/>
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-12 body">
<h2>Gresham Outdoor Public Art Brochure</h2>
<br>
<img src="img/brochure/inside-brochure-small.jpg" alt="Map with images of artwork." class="center" id="brochure"/>
<br>
<img src="img/brochure/outside-brochure-small.jpg" alt="Reference numbers and name of artwork" class="center" id="brochure"/>
</div>
</div><!-- row div close -->
</div><!-- container div close -->
<!-- End Body -->
<!-- Footer -->
<?php include 'footer.php'; ?>
<!-- End Footer -->
</body>
</html>