-
Notifications
You must be signed in to change notification settings - Fork 2
/
faq.php
133 lines (119 loc) · 3.98 KB
/
faq.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
session_start();
require('env/database.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>FAQ</title>
<link rel="icon" type="image/x-icon" href="assets/svg-logo/logo-bg.svg">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/db79afedbd.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/main.css" />
</head>
<body>
<!-- ----------------------------------------------------Loading Screen-------------------------------------------------------- -->
<div id="loading">
<img src="assets/svg-logo/LOADER.svg" alt="Loading..." />
</div>
<script>
var loader = document.getElementById("loading");
window.addEventListener("load", function() {
loader.style.display = "none";
})
</script>
<!-----------------------header ------------------->
<?php
// including header
include 'header.php';
?>
<div class="container ">
<div class="card">
<div class="card-body">
<h1>FAQ</h1>
<main>
<section class="faq">
<h2>Shipping</h2>
<ul>
<li>
<h3>How long does shipping take?</h3>
<p>Shipping typically takes 5-7 business days.</p>
</li>
<li>
<h3>Can I track my shipment?</h3>
<p>Yes, you will receive a tracking number once your order has shipped.</p>
</li>
<li>
<h3>Do you offer international shipping?</h3>
<p>Yes, we offer international shipping to most countries.</p>
</li>
</ul>
</section>
<section class="faq">
<h2>Returns</h2>
<ul>
<li>
<h3>What is your return policy?</h3>
<p>We accept returns within 15 days of purchase.</p>
</li>
<li>
<h3>Do I have to pay for return shipping?</h3>
<p>Yes, the customer is responsible for return shipping costs.</p>
</li>
<li>
<h3>Can I exchange an item?</h3>
<p>Yes, we offer exchanges for items of equal or lesser value.</p>
</li>
</ul>
</section>
</main>
</div>
</div>
</div>
<!------------------------------ footer -------------------->
<?php
// including footer
include 'footer.php';
?>
</body>
<style>
/* css for faq page */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
margin: 0;
}
.faq {
margin: 50px auto;
max-width: 600px;
}
h2 {
font-weight: bolder;
font-size: 24px;
margin-bottom: 20px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
margin-bottom: 20px;
}
h3 {
font-size: 18px;
margin-bottom: 10px;
}
p {
margin: 0;
}
</style>
</html>