-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathabout.php
86 lines (70 loc) · 2.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
include_once('./includes/headerNav.php');
?>
<div class="overlay" data-overlay></div>
<!--
- HEADER
-->
<header>
<!-- top head action, search etc in php -->
<?php require_once './includes/topheadactions.php'; ?>
<!-- desktop navigation -->
<?php require_once './includes/desktopnav.php' ?>
<!-- mobile nav in php -->
<?php require_once './includes/mobilenav.php'; ?>
</header>
<!--
- MAIN
-->
<main>
<div class="product-container">
<div class="container">
<!--
- SIDEBAR
-->
<!-- CATEGORY SIDE BAR MOBILE MENU -->
<?php require_once './includes/categorysidebar.php' ?>
<!-- ############################# -->
<div class="product-box">
<!-- get id and url for each category and display its dat from table her in this secton -->
<div class="product-main">
<!-- -->
<!-- about us section -->
<div class="about-us">
<div class="about-us-section">
<!-- about us text -->
<div class="about-us-content">
<div class="about-us-text">
<h1 id="about-title" style="text-align: center;">About Us!</h1>
<br>
<h2 style="text-align: center;">
Welcome To <span id="about-title"><?php echo $_SESSION['web-name'];?></span>
</h2>
<p>
<strong id="about-title"> <?php echo $_SESSION['web-name']; ?></strong> is a Professional eCommerce Platform. Here we will provide you only interesting content, which you will like very much. We're dedicated to providing you the best of eCommerce, with a focus on dependability and Online Selling. We're working to turn our passion for eCommerce into a booming online website. We hope you enjoy our eCommerce as much as we enjoy offering them to you.
</p>
<p style="font-weight: bold; text-align: center;">
Thanks For Visiting To <strong id="about-title"> <?php echo $_SESSION['web-name']; ?></strong>
<br>
<br>
<span style="font-size: 16px; font-weight: bold; text-align: center;">
Have a nice day!
</span>
</p>
</div>
</div>
</div>
</div>
<!-- -->
</div>
</div>
</div>
</div>
<!--
- TESTIMONIALS, CTA & SERVICE
-->
<!--
- BLOG
-->
</main>
<?php require_once './includes/footer.php'; ?>