-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathabout_us.php
61 lines (58 loc) · 3.17 KB
/
about_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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
require('inc/config.php');
?>
<!DOCTYPE html>
<html style="margin: 0;padding: 0;">
<head>
<title>About Us</title>
<link rel="stylesheet" type="text/css" href="css/advertise.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
</head>
<body style="margin: 0;padding: 0;">
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="home.php">Adsells</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="home.php">HOME</a></li>
<li><a href="my_products.php">MY PRODUCTS</a></li>
<li><a href="bought_products.php">BOUGHT PRODUCTS</a></li>
<li><a href="message.php">MESSAGES</a></li>
<li><a href="about_us.php">ABOUT US</a></li>
<li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo $_SESSION['email']; ?><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="change_password.php">Change Password</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<h1 style="text-align: center; padding: 20px 0px 20px 10px;">About Us</h1>
<!--<div class="container">-->
<div style="background-color: #212F3C; width: 100%;">
<p style="color: white;padding: 30px 30px 30px 30px;font-size: 25px;text-align: center;">AdSells.com is a free local classifieds site. Sell anything from mobiles, laptops and Books. Submit ads for free . If you want to buy something - here you will find interesting items, cheaper than in the store. Start buying and selling in the most easy way on AdSells.com.</p>
<center><h2 style="padding: 10px 10px 30px 10px;color: white;">Connect Us</h2></center>
<div style="padding-bottom: 30px;">
<center><a href="#"><i id="social-fb" class="fa fa-facebook-square fa-3x social"></i></a>
<a href="#"><i id="social-tw" class="fa fa-twitter-square fa-3x social"></i></a>
<a href="#"><i id="social-gp" class="fa fa-google-plus-square fa-3x social"></i></a>
<a href="#"><i id="social-em" class="fa fa-envelope-square fa-3x social"></i></a>
</center>
</div>
</div>
<!--</div>-->
</body>
</html>