-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
52 lines (47 loc) · 1.68 KB
/
contact.php
File metadata and controls
52 lines (47 loc) · 1.68 KB
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
<?php
$title = "Contact Us";
$desc = "";
include("includes/header.php"); ?>
<main role="main">
<section class="pagetitle">
<h1>Contact</h1>
</section>
<section class="contact">
<a href="mailto:info@davisbrook.co.uk">
<div class="contactarea"><img src="images/emailcircle.png" alt="Email - Davisbrook Ltd" />
<h2>Email</h2>
<h5>info@davisbrook.co.uk</h5>
</div>
</a>
<a href="tel:01614397510">
<div class="contactarea"><img src="images/phonecircle.png" alt="Phone Office - Davisbrook Ltd" />
<h2>Phone</h2>
<h5>01614 397510</h5>
</div>
</a>
<a href="tel:07879495614">
<div class="contactarea"><img src="images/mobilecircle.png" alt="Phone Mobile - Davisbrook Ltd" />
<h2>Mobile</h2>
<h5>07879 495614</h5>
</div>
</a>
<a href="https://maps.google.com/maps?ll=53.477584,-2.503399&z=11&t=m&hl=en-GB&gl=GB&mapclient=embed">
<div class="contactarea"><img src="images/mapcircle.png" alt="Phone Mobile - Davisbrook Ltd" />
<h2>Address</h2>
<h5>Manchester, United Kingdom</h5>
</div>
</a>
</section>
<section id="contactform">
<form class="contactform" name="contact" method="post" action="process.php" onSubmit="alert('Message Successfully Sent!')">
<label for="Name">Name <span>*</span></label>
<input type="text" name="Name" id="Name" size="30" required>
<label for="Email">Email <span>*</span></label>
<input type="text" name="Email" id="Email" size="30" placeholder="" required>
<label for="Message">Message <span>*</span></label>
<textarea name="Message" id="Message" placeholder="" required></textarea>
<input id="submit" type="submit" name="submit" value="Send" />
</form>
</section>
</main>
<?php include("includes/footer.php"); ?>