-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontact-us.php
29 lines (19 loc) · 912 Bytes
/
contact-us.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
<?php include './components/header.php'; ?>
<div class="ui container">
<!-- Top Navigation Bar -->
<?php include './components/top-menu.php'; ?>
<!-- BODY Content -->
<div class="ui grid">
<!-- Left menu -->
<?php include './components/side-menu.php'; ?>
<!-- right content -->
<div class="twelve wide column">
<h1>Contact Us</h1>
<p><strong>Address:</strong><br> FICTIONAL ORPHAN - Yuvodhaya 85, <br> 'D' Street, 7th Cross, Gandhinagar, <br> Bangalore 560009 Karnataka, India </p>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Tel:</strong> +918022555555, +918022666666</p>
<span class="p-20"></span>
</div>
</div>
</div>
<?php include './components/footer.php'; ?>