-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFAQ.php
More file actions
57 lines (52 loc) · 2.53 KB
/
FAQ.php
File metadata and controls
57 lines (52 loc) · 2.53 KB
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
<!DOCTYPE html>
<html lang=en>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<Head>
<!--Custom CSS-->
<link rel="stylesheet" type="text/css" href="Cascade Sheets/headerFooter.css">
<link rel="stylesheet" href="Cascade Sheets/FAQ-Styles.css">
<title>FAQ</title>
</Head>
<body>
<?php include "./header.php"?>
<h1 class="title">Frequently Asked Questions</h1><br>
<div class="question">
<h3>How can I order?</h3>
<p>When you find a book you want, you can add it to cart, after you should login and go through the ordering process.</p>
</div>
<div class="question">
<h3>Which payment methods can I use?</h3>
<p>You can use Credit or Debit cards and Cash On Delivery.</p>
</div>
<div class="question">
<h3>How to contact customer service?</h3>
<p>If you have question regarding our Booklr online book store (ordering, account questions, technical questions), please contact us through "Contact Us" page.</p>
</div>
<div class="question">
<h3>What are the terms and conditions?</h3>
<p>You can see the terms and conditions <a href="#">here.</a></p>
</div>
<div class="question">
<h3>How do create an account?</h3>
<p>Go to "Contact Us" page, After fill all the needed information and click "Sign Up". After submitting the form, your account will be confirmed.</p>
</div>
<div class="question">
<h3>How can I reset my password?</h3>
<p>You can retrieve your password by clicking "forgot password?" Instruction on password reset will be send to your email.</p>
</div>
<div class="question">
<h3>How do I change my account details?</h3>
<p>You can change all your information on your account. Go to "Login" page and log in, then click "My Account" and "Edit Account Details". Here you can change all your account information.</p>
</div>
<div class="question">
<h3>How about Shipping time?</h3>
<p>Shipping time will be 3-7 working days for local shipping.</p>
</div>
<div class="question">
<h3>Can I return a product?</h3>
<p>If you want to return a product, please contact us through "Contact Us" page.</p>
</div><br><br>
<?php include "./footer.php"?>
</body>
</html>