-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
53 lines (49 loc) · 2.07 KB
/
about.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<?php include 'head.php' ?>
<body>
<!-- Start Navbar -->
<?php
$current = 'about';
include 'navbar.php';
?>
<!-- End Navbar -->
<!-- Start Header -->
<div id="header">
</div>
<!-- End Header -->
<!-- Start Body -->
<div class="container">
<img src="img/divider.png" alt="Page Divider" id="divider"/>
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-10 body text-center">
<h2>About Us</h2>
<br>
<h4>Our Goal:</h4>
<p>Art Walk Etc. is a 501c3 nonprofit all-volunteer organization of individuals and supporters who work together
to build community, using art as the vehicle. We seek to commission and install locally crafted, permanent
art for Gresham, which will contribute to ongoing educational and cultural experiences and cultivate
appreciation of what visual, touchable art can do to enrich our imaginations, our lives and our community. </p>
<br>
<h4>Our Beginning:</h4>
<p>
Our first project was the Gresham Art Walk in 2002, created by a small group of volunteers who love art.
What began as a showcase for a handful of artists became THE Gresham event to attend on the third Saturday
in July, ultimately drawing as many as 20,000 attendees to downtown Gresham each year.
</p>
<p>
The desire to support more permanent, smaller scale art projects led to the organization's gifting the
Art Walk event to the City of Gresham after a one-year mentorship in 2014. With that, Gresham Outdoor
Public Art (GOPA) was born to bring art into public spaces as a permanent legacy to enrich and enhance
the community.
</p>
</div>
</div><!-- row div close -->
</div><!-- container div close -->
<!-- End Body -->
<!-- Footer -->
<?php include 'footer.php'; ?>
<!-- End Footer -->
</body>
</html>