-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
34 lines (26 loc) · 1.28 KB
/
contact.php
File metadata and controls
34 lines (26 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<?php include __DIR__ . "/partials/header.php";
?>
<body>
<main>
<!-- Hero -->
<div class="jumbotron mt-5 p-3 p-md-5 text-dark bg-light">
<div class="col-md-6 px-0">
<h1 class="display-4">Contact Us</i></h1>
<p class="lead my-3">Some snazzy punchline?</p>
</div>
</div>
<!-- Hero END -->
<h2 class="text-center mt-4">Wanna visit us?</h2>
<div class="maps-container">
<i class="fa-solid fa-mobile-screen-button fa-xl"></i> <a href="tel:021123465">021 123 465</a>
<i class="fa-solid fa-envelope"></i> <a href="mailto:example@example.com">Email us!</a>
</div>
<div class="maps-container mt-4">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3312.6993033604444!2d18.63279031525808!3d-33.871639526637644!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1dcc50b0ac0a214f%3A0x66973f0ada04f5e1!2sBattle%20Bunker!5e0!3m2!1sen!2sza!4v1670333667516!5m2!1sen!2sza" width="1200" height="350" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</main>
<?php include __DIR__ . "/partials/footer.php"; ?>
</body>
</html>