-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
46 lines (35 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
<?php
session_start();
include_once("functions.php");
?>
<?php include_once("meta.php"); ?>
<body>
<?php include_once("header.php"); ?>
<main>
<div class="container">
<?php if(isset($_GET["search"]) && isset($_GET["keywords"]) && $_GET["keywords"] != NULL): ?>
<?php search($_GET["keywords"]); ?>
<?php else: ?>
<div class="contact_info">
<h2>Contact Us</h2>
<p>Kathmandu Electronics is all about providing reliable and up to date information, fast and safe product delivery and expert after sales services to customers. If you have any query regarding our services and products you can contact our Customers Care branch anytime from anywhere.</p>
<h2>Customer care</h2>
<h2>Kathmandu</h2>
<p>+977-9817483561</p>
<h2>You can also connect with us via e-mail.</h2>
<p>mail@kathmanduelectronics.com</p>
<p>kathmanduelectronics@gmail.com</p>
<h2>OR</h2>
<h2>You can follow us on social media:</h2>
<ul>
<li><a href="http://www.facebook.com/kathmanduelectronics">Facebook</a></li>
<li><a href="http://www.twitter.com/ktmelectronics">Twitter</a></li>
</ul>
</div>
<?php endif ?>
</div>
</main>
<?php include_once("aside.php"); ?>
<?php include_once("footer.php"); ?>
</body>
</html>