-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
executable file
·36 lines (33 loc) · 1.34 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
<?php require "PHP/stdConfig.php"; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact | Sanatree</title>
<?php require "PHP/stdHeader.php"; ?>
<style type="text/css">
</style>
</head>
<body onload="initResponsive()" onresize="initResponsive()">
<?php require_once "PHP/navbar.php"; ?>
<div class="wrapper" id="body-wrapper">
<div class="subsection-wrapper wrapper">
<div class="subsection">
<div class="title">Looking for Us?</div>
<p>
You can send all email inquiries to <a href="mailto:[email protected]">[email protected]</a> while we grow our sapling below.
</p>
</div>
</div>
<div class="subsection-wrapper wrapper">
<div class="subsection">
<div class="title">Coming Soon: An Embeded Email Form</div>
<p>
Our developers are hard at work to bring a better, more-seamless method of communication to the site. It will be placed right here on this page when we are done. For now, though, it's just a small sapling.
</p>
<img src="imageAssets/sapling.png" alt="A Small Sapling"/>
</div>
</div>
</div>
<?php require_once "PHP/footer.php"; ?>
</body>
</html>