-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
46 lines (41 loc) · 1.02 KB
/
Copy pathcontact.php
File metadata and controls
46 lines (41 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<?php
$title = "Contact";
include './include/head.inc.php';
?>
<body class="contact">
<!-- navigation -->
<?php
include './include/navigation.inc.php';
?>
<!-- contact info -->
<h1>Contact Us</h1>
<h2 class="contact-desc">Reach out to find out more about our trucks.</h2>
<div class="contact-container">
<div class="contact-info">
<h2>Contact Info</h2>
<div>
<i class="fa-solid fa-phone"></i>
<p>Phone: (843) 274-8735</p>
</div>
<div>
<i class="fa-solid fa-envelope"></i>
<p>info@toptrucks.com</p>
</div>
<div>
<i class="fa-solid fa-location-dot"></i>
<p>Austin, TX</p>
</div>
</div>
<!-- form -->
<?php
include './include/contactForm.inc.php';
?>
</div>
<!-- footer -->
<?php
include './include/footer.inc.php';
?>
</body>
</html>