-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFAQ.php
159 lines (125 loc) · 6.23 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<?php
session_start();
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dressingnity FAQ</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- RemixIcon CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<!-- DarkReader JavaScript CDN -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/darkreader.min.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="CSS/Styles.css">
<link rel="stylesheet" href="CSS/FAQ.css">
<!-- Favicon -->
<link rel="icon" href="Images/SVG Samples/Dressingnity recolor Logo.png">
</head>
<body>
<!-- Navbar Starts -->
<?php
include('Partials/Navbar.php')
?>
<!-- Navbar Ends -->
<section id="faq">
<h1 class="faq-heading">FAQ</h1>
<div class="container faq">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="FAQ-section">
<!-- 1st FAQ menu -->
<div class="FAQ-item">
<div class="FAQ-title">
<details>
<summary class="FAQ-descp">
How do I sign-up/Register for a Dressingnity account ?
</summary>
When you visit on Dressingnity,you will be presented with an Button on the top
right to Sign-in/Register.
All you need to do is provide us with your name,email address and a password.Its
that simple.
</details>
</div>
<div class="FAQ-content" id="item4">
</div>
</div>
<!-- 2nd FAQ menu -->
<div class="FAQ-item">
<div class="FAQ-title">
<details>
<summary class="FAQ-descp">
Why should I visit or shop on Dressingnity?
</summary>
Dressingnity is an independent brand, our site have great variety in fashion
with reasonable price for men and women as well as youngsters of this age to
truely dress for the occasion.
</details>
</div>
</div>
<!-- 3rd FAQ menu -->
<div class="FAQ-item">
<div class="FAQ-title">
<details>
<summary class="FAQ-descp">
How can I contact for any problem ?
</summary>
On the bottom right section,you'll see the contact details(email,mobile
number).So you can visit them and
contact us for any issue yo are facing.
</details>
</div>
</div>
<!-- 4th FAQ menu -->
<div class="FAQ-item">
<div class="FAQ-title">
<details>
<summary class="FAQ-descp">
how do I know more about Dressingnity ?
</summary>
To know about Dressingnity, all you need to do is go to the bottom section and
click on About site.
To know some more about us, u can also visit our Blog page where u will get more
information about our website.
</details>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <div class="none"><img src="Images/Wave SVG.svg" alt=""></div> -->
<!-- Footer Starts -->
<?php
include('Partials/Footer.php')
?>
<!--Footer Ends-->
<!-- Cookie Banner -->
<?php
include('Partials/Cookies.php')
?>
<!-- End of Cookie Banner -->
<!-- Bootstrap JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
<!-- Bootstrap JS Bundle -->
<!-- Custom JS -->
<script src="JavaScript/Cookies.js"></script>
<!-- Custom JS -->
<!-- Darkmode-Toggle -->
<script src="JavaScript/DarkModeToggle.js"></script>
</body>
</html>