-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
212 lines (120 loc) · 6.33 KB
/
faq.html
File metadata and controls
212 lines (120 loc) · 6.33 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Get Fast Labels</title>
<link rel="shortcut icon" href="Images/_4d4af216-900d-4c70-b766-60d1223a866a__1_-removebg-preview.png"
type="image/x-icon">
<link rel="stylesheet" href="Css Files/faq.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<div class="container">
<!------------------------------------ Header ------------------------------------>
<header class="header">
<div
style="display: flex; flex-wrap: wrap; justify-content: space-around; width: 100%; align-items: center;">
<div class="logo">
<a href="index.html">
<img src="Images/logo.png"
width="70px" style="margin-bottom: 10px;">
</a>
</div>
<div class="navbar">
<nav>
<ul>
<li><a href="index.html" class="nav-links">Home</a></li>
<li><a href="pricing.html" class="nav-links">Pricing</a></li>
<li><a href="faq.html" class="nav-links">FAQs</a></li>
<li><a href="contact.html" class="nav-links">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!------------------------------------ Main-1 ------------------------------------>
<main class="main1">
<h1 class="heading-of-sub">
Frequently Asked Question <span style="color: #278eee;">FAQ</span>
</h1><br>
<div style="display: flex;flex-direction: column; align-items: center; justify-content: center;">
<h1>Question no <span class="ans">1:</span></h1>
<div class="question ques1">
<h2 class="ques">How fast do labels get deliverd?</h2>
<h2 class="ans">Instant.</h2>
</div>
<h1>Question no <span class="ans">2:</span></h1>
<div class="question ques2">
<h2 class="ques">Are there bulk / reseller discounts?</h2>
<h2 class="ans">Yes we offer bulk discounts and a reseller api, contact our suppor team for custom prices.</h2>
</div>
<h1>Question no <span class="ans">3:</span></h1>
<div class="question ques3">
<h2 class="ques">Who Can I Make A Deposite?</h2>
<h2 class="ans">Deposites can be made with: Bitcoin, Ethereum , Litecoin , USDT , USDC , Paypal , Venmo & Cashapp</h2>
</div><br><br>
</div>
</main>
<!------------------------------------Footer------------------------------------>
<footer class="footer">
<div style="display: flex; justify-content: space-evenly; flex-wrap: wrap; width: 100%;">
<div class="f-row">
<big>NEWSLETRER</big>
<p style="margin-bottom: 20px;">get the latest about us and sign up to get 10% off today.
never miss a single promo or future update</p>
<h2>Contact us :</h2>
<span>Email Address : getfastlabel@gmail.com</span><br>
<span>Contact Number : +1 916 3136 858</span><br>
<span>Address : Post office, United States</span>
</div>
<div class="s-row">
<h1 class="support">Support</h1>
<ul>
<li><a href="Contact.html">Contact</a></li>
<li><a href="login.html">Support Page</a></li>
<li><a href="login.html">Discord</a></li>
<li><a href="login.hmtl">Telegram</a></li>
</ul>
</div>
<div class="t-row">
<h1 class="support">Terms</h1>
<ul>
<li><a href="login.html">Privacy Policy</a></li>
<li><a href="login.html">Security</a></li>
<li><a href="pricing.html">Pricing</a></li>
</ul>
<div style="display: flex; width: 100%; justify-content: space-between;">
<a href="#" class="icons-social"><i class="fa-brands fa-discord fa-xl"></i></a>
<a href="#" class="icons-social"><i class="fa-brands fa-telegram fa-xl"></i></a>
<a href="#" class="icons-social"><i class="fa-brands fa-instagram fa-xl"></i></a>
</div>
</div>
</div>
</footer>
<div class="top" onclick="scrollToTop"><i class="fa-solid fa-arrow-up fa-xl" style="color: white;"></i></div>
<script>
document.addEventListener("DOMContentLoaded", function () {
var scrollButton = document.querySelector('.top');
window.addEventListener('scroll', function () {
// Show/hide scroll-to-top button based on scroll position
if (window.scrollY > 100) {
scrollButton.classList.add('show');
} else {
scrollButton.classList.remove('show');
}
});
scrollButton.addEventListener('click', scrollToTop);
});
function scrollToTop() {
// Scroll to top with smooth transition
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
</script>
</div>
</body>
</html>