-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
43 lines (36 loc) · 1.03 KB
/
about.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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<?php include_once('php/includes/common-css-js.php'); ?>
</head>
<body>
<?php
include("php/templates/header.php");
?>
<div class="mainpage">
<h2>About Us</h2>
<p>Our approach gives our users a better
experience when they intend to find or sell
their land without having another
third party person or company.</p>
</div>
<div class="mainpage">
<h2>Contact Us</h2>
<p>
<span>E-mail : [email protected]</span><br>
<span>Phone (Admin): 077-8780559</span><br>
<span>Phone (Moderator): 078-2828934</span><br>
<span>Social media (Whatsapp or Telegram): 077-8780559</span>
</P>
</div>
<div class="mainpage">
<h2>Terms and Conditions</h2>
<p>Illegal activities are prohibited and if someone have commited those will be penalized under the civil law.</p>
</div>
<?php
include("php/templates/footer.php");
?>
</body>
</html>