-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.php
39 lines (38 loc) · 1.25 KB
/
contact.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
<?php //instantiate variables
$mainPictureName = "Project Overview";
$mainPicturePhoto = "overview_photo.jpg";
$mainPicturePost = "The Kenya Solar Power Demonstration Project aims to design and build a solar
array for a technology and learning center in Mbita, Kenya. In addition, this
project plans to provide the community with educational materials as part of its
goal of creating a sustainable, growing economy.";
?>
<!DOCTYPE html>
<html>
<head>
<title>Contact | Kenya Solar Power Demonstration Project</title>
<link rel="stylesheet" type="text/css" href="global.css">
</head>
<body id="Contact">
<div id="banner">
<?php include('banner.php'); ?>
</div>
<div id="navBar">
<?php include('navBar.php'); ?>
</div>
<div id="mainContainer">
<div id="mainContent">
<h2>Contact</h2>
<div id="contact">
<p>You may contact us by email. Our email is </h3><a href="mailto:[email protected]">[email protected]</a>
We appreciate all help we can get, and thanks for making the world a brighter place.
</p>
</div>
</div>
<?php include('mainPicture.php'); ?>
<?php include('updatePanel.php'); ?>
</div>
<div id="footer">
<h3>2012 Kenya Solar Power. All Rights Reserved</h3>
</div>
</body>
</html>