-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.php
38 lines (35 loc) · 927 Bytes
/
sitemap.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
<?php
include ('php/connect_db.php');
/*-header bar---*/
include('php/header.php');
?>
<html>
<!--- A MNgo Creation by: Aditya Suman (http://www.mngo.in/aditya.php)-->
<head>
<title>Sitemap | Catchfreedeal</title>
</head>
<body>
<div class="page_content">
<div class="sitemap_page">
Catchfreedeal.com:
<ul>
<li><a href="index.php">index</a></li>
<li><a href="deal.php">Deals</a></li>
<li><a href="coupon.php">Coupons</a></li>
<li><a href="service.php">Near-By Services</a></li>
<li><a href="ask.php">Ask For Deal</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="advertise.php">Advertise With Us</a></li>
<li><a href="career.php">Career With Us</a></li>
<li><a href="terms.php">Terms & Conditions</a></li>
<li><a href="privacy.php">Privacy Policy</a></li>
</ul>
</div>
<!----footer------>
<br><br><br><br>
<?php
include('php/footer.php');
?>
</div>
</body>
</html>