-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreview-faq.html
157 lines (117 loc) · 4.64 KB
/
preview-faq.html
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
<!DOCTYPE html>
<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">
<link rel="icon" href="./img/icon.png">
<link rel="stylesheet" href="./css/nav.css">
<link rel="stylesheet" href="./css/visitor.css">
<link rel="stylesheet" href="./css/about.css">
<link rel="stylesheet" href="./css/faq.css">
<link rel="stylesheet" href="./css/contact.css">
<title>Awit Shop</title>
</head>
<body>
<!--navbar-->
<nav>
<div class="navbar">
<div class="title">
<h1><a href="./homepage.html">Awit Shop</a></h1>
<p style="font-size: 1.1rem;"><a href="./homepage.html">it's like shopee, but worse</a></p>
</div>
<div class="links">
<ul>
<li id="Shop" onclick="Shop()"><a href="index.html">Shop</a></li>
<li id="About" onclick="About()"><a href="preview-about.html">About</a></li>
<li id="Faq" onclick="Faq()" class="active"><a href="#FAQ" id="faq">FAQ</a></li>
<li id="Contact" onclick="Contact()"><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="SUC">
<div class="search">
<i class="fas fa-search"></i>
<input type="text" placeholder="Search...">
</div>
<div class="login-signup">
<h4><a id="signup" href="signup.html">Sign Up</a></h4>
<h4> | </h4>
<h4><a href="login.html">Login</a></h4>
</div>
</div>
</div>
</nav>
<div class="sidebar">
<div class="socials">
<a href="##"><i class="fab fa-facebook-f"></i></a>
<a href="##"><i class="fab fa-instagram"></i></a>
<a href="##"><i class="fab fa-twitter"></i></a>
</div>
</div>
<!--end navbar-->
<!--shop page-->
<main>
<!--Shop-->
<!--end Shop-->
</main>
<!--MODALS-->
<!--end MODALS-->
<!--end shop page-->
<!--about page-->
<!--end about page-->
<!--faq page-->
<section id="FAQ" class="faq">
<div class="faq-content">
<h2>FAQ</h2>
<p>There are no frequently asked questions yet.</p>
</div>
</section>
<!--endfaq page-->
<!--contact page-->
<section id="contact" class="contact">
<div class="contact-content">
<h2>Contact</h2>
<div class="columns">
<div class="col-1">
<ul>
<li><a href="preview-shipping&Returns.html">Shipping & Returns</a></li>
<li><a href="preview-store-policy.html">Store Policy</a></li>
<li><a href="preview-payment-methods.html">Payment Methods</a></li>
</ul>
</div>
<div class="col-2">
<ul>
<li><a href="##">Contact</a></li>
<li><a href="##">Phone: +639614502534</a></li>
<li><a href="##">[email protected]</a></li>
</ul>
</div>
<div class="col-3">
<ul>
<li><a href="##">Facebook</a></li>
<li><a href="##">Instagram</a></li>
<li><a href="##">Twitter</a></li>
</ul>
</div>
</div>
<div class="email">
<h4>Join our mailing list and never miss an update<br><br></h4>
<label for="email">Email</label>
<div>
<input type="email" name="email" id="" placeholder="Enter your email here*" required>
<button type="submit">Subscribe Now</button>
</div>
</div>
</div>
<footer>
<p>© 2022 by Awit Group.</p>
</footer>
</section>
<!--end contact page-->
<!--scripts-->
<script src="https://kit.fontawesome.com/629285ca24.js" crossorigin="anonymous"></script>
<script src="./script/script.js"></script>
<script src="./script/cart-right.js"></script>
<!--end scripts-->
</body>
</html>