-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
356 lines (301 loc) · 15.2 KB
/
privacy.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
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<!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">
<title>VLink Domestic Shipping - Privacy Policy</title>
<link href="fontawesome-free-5.7.2-web/css/all.css" rel="stylesheet" type="text/css">
<link href="css/back-to-top.css" rel="stylesheet">
<link href="css/w3.css" rel="stylesheet">
<link href="css/mobile-menu-top.css" rel="stylesheet">
<link href="css/vlink.css" rel="stylesheet" type="text/css">
<script defer src="fontawesome-free-5.7.2-web/js/all.js"></script>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/back-to-top.js"></script>
<script src="js/w3.js"></script>
<div class="thetop"></div>
<style>
* {
box-sizing: border-box;
}
.body {
width: 100%;
margin: 0;
background-image: none;
}
.container {
padding: 0 100px;
}
.parallax {
/* The image used */
background-image: url("images/privacy-pic.jpg");
/* Set a specific height */
min-height: 440px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.subheader-h2 {
margin-top: 260px;
}
.h4 {
color: #696969;
font-family: "Archivo Bold", sans-serif;
font-weight: 500;
font-style: italic;
text-decoration: solid underline #4b4b4b;
}
/* On screens that are 992px wide or less, go from three columns to two columns */
@media screen and (max-width: 1300px) {
.container {
padding: 0 50px;
}
.aboutus-p {
width: 90%;
text-align: justify;
}
}
/* On screens that are 992px wide or less, go from three columns to two columns */
@media screen and (max-width: 900px) {
.container {
padding: 0 50px;
}
.aboutus-p {
width: 100%;
text-align: justify;
}
}
/* On screens that are 600px wide or less */
@media screen and (max-width: 600px) {
.container {
padding: 0 30px;
}
.aboutus-p {
width: 100%;
text-align: justify;
}
.parallax {
min-height: 400px;
}
.subheader-h2 {
margin: 200px auto 0;
}
.vlink-logo {
width: 200px;
}
}
</style>
</head>
<body class="body">
<div class="parallax">
<!-- Header with logo and navbar -->
<header>
<a href="index.html">
<img src="images/SVG/vlink-logo.svg" class="vlink-logo" alt="v-link logo"/>
</a>
<nav>
<ul class="navlist">
<li class="navlistitem"><a href="index.html">Home</a></li>
<li class="navlistitem"><a href="services.html">Services</a></li>
<li>
<div class="dropdownnav">
<button onclick="dropDownNav()" class="dropbtn">
Get a Quote <i class="fas fa-caret-down"></i></button>
<div id="myDropdown" class="dropdownnav-content">
<a href="quote-is-1.php">International Shipping</a>
<a href="quote-ec.php">Domestic Shipping</a>
<a href="quote-ss.php">Secure Storage</a>
</div>
</div>
</li>
<li class="navlistitem"><a href="about.html">About</a></li>
<li class="navlistitem"><a href="contact.php">Contact</a></li>
<li class="navlistitem"><a href="/package-tracker/" target="_blank">Track</a></li>
</ul>
</nav>
</header>
<!-- Use any element to open/show the overlay navigation menu -->
<span>
<button class="openbtn" onclick="openNav()">
<i class="material-icons md-48">menu</i>
</button>
</span>
<!-- What We Do. -->
<div class="subheader-top" style="width: 265px;">Privacy Policy</div>
</div>
<!-- Inner Container that contains body content and pads it 160px left and right from <body> -->
<div class="container">
<!-- Body Contents -->
<div class="body-content">
<p class="aboutus-h2">VLink Express Courier Ltd. Website Privacy Policy</p>
<p class="aboutus-p">
<span class="h4">What information do we collect?</span>
We collect information from you when you visit our site.
This information includes your domain name, IP address, browser version, operating system,
pages you visit at our site, date and time you visited our site, and the site you passed
through to get to our site if applicable. <br><br>
When you register on our site, order services, request information, use or access
systems, subscribe to a newsletter, or fill out a form, as appropriate, you may be also asked
to enter your: name, business name, email address, mailing address, phone number.
You may, however, visit our site anonymously. <br><br>
<span class="h4">What do we use your information for?</span>
Any of the information we collect from you may be used in one of the following ways:<br><br>
– To personalize your experience (your information helps us to better respond to your individual needs)<br>
– To improve our website (we continually strive to improve our website offerings based on the information and
feedback we receive from you)<br>
– To improve customer service (your information helps us to more effectively respond to your customer service
requests and support needs)<br>
– To process transactions (your information, whether public or private, will not be sold, exchanged, transferred,
or given to any other company for any reason whatsoever, without your consent, other than for the
express purpose of delivering the purchased product or service requested)<br>
– To send periodic emails (the email address you provide for order processing or registration may be used to send you
information and updates pertaining to your order, as well as notifications, newsletters, and future email campaigns)<br><br>
Note: If at any time you would like to unsubscribe
from receiving future emails, we include unsubscribe instructions at the bottom of each email or you
can notify us at the address below. <br><br>
<span class="h4">How do we protect your information?</span>
We implement a variety of security measures including generally
accepted information security techniques such as firewalls and access control procedures to maintain
the safety of your personal information. All supplied sensitive information can only be accessed by
those authorized with special access rights to our systems, and are required to keep the information
confidential. However, there remains a risk that your information will be accessed, misused or altered
by third parties who obtain unauthorized access despite our efforts – we cannot guarantee the security
of information you disclose online. After a transaction, your private information may be kept on file in
order to provide future services, newsletters, notifications, or campaigns. <br><br>
<span class="h4">Do we use cookies?</span>
Yes (Cookies are small files that a site or its service provider transfers to your computer’s
hard drive through your Web browser (if you allow) that enables the sites or service providers
systems to recognize your browser and capture and remember certain information.) We use cookies
to compile aggregate data about site traffic and site interaction so that we can offer better
site experiences and tools in the future.<br><br>
<span class="h4">Online Privacy Policy Only.</span>
This online privacy policy applies only to information collected through our website and not to
information collected offline.<br><br>
<span class="h4">Your Consent.</span>
By using our site, you acknowledge that you have read and consent to our web site privacy policy.<br><br>
<span class="h4">Changes to our Privacy Policy.</span>
We reserve the right to modify this policy in whole or in part at
any time without prior notice. If we decide to change our privacy policy, we will update the Privacy
Policy modification date below. You should periodically review the privacy policy to be aware of modifications.
Your continued use of the site after modifications have been made constitutes your acceptance of those
modifications.<br><br>
<span class="h4">Contacting Us.</span>
If there are any questions regarding this privacy policy, or if you would like to
make changes or corrections to your personal information, please do not hesitate to
contact us.
</p>
</div>
</div>
<!-- Mobile Menu -->
<!-- The overlay -->
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a class="w3-dropdown-click" style="padding-top: 0" onclick="myFunction()">
Get a Quote <i class="fas fa-caret-down"></i>
<div id="demo" class="dropdown">
<a href="quote-is-1.php" style="padding-top: 0">International Shipping</a>
<a href="quote-ec.php">Domestic Shipping</a>
<a href="quote-ss.php">Secure Storage</a>
</div>
</a>
<a href="about.html" class="active">About</a>
<a href="contact.php">Contact</a>
<a href="/package-tracker/" target="_blank">Track</a>
</div>
</div>
<!-- JavaScript Full Screen Overlay Nav -->
<script>
/* Open */
function openNav() {
document.getElementById("myNav").style.height = "100%";
}
/* Close */
function closeNav() {
document.getElementById("myNav").style.height = "0%";
}
</script>
<!-- JavaScript for Top Nav Drop Down List for GetaQuote Link(for mobile menu) -->
<script>
function myFunction() {
var x = document.getElementById("demo");
if (x.className.indexOf("w3-show") === -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<!-- JavaScript for Top Nav Drop Down List for GetaQuote Link -->
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function dropDownNav() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdownnav-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
<!-- Scroll back to the top -->
<div class="scrolltop">
<div class="scroll icon">
<i class="scroll-icon fas fa-3x fa-angle-up"></i>
</div>
</div>
</body>
<!-- footer -->
<footer>
<!-- Address and Phone number -->
<p class="footeradd">
3M, Microkatu, 70210 Kuopio, Finland, +358 9 42453389
</p>
<!-- Copyright -->
<p class="footercopyrite">
Copyright <i class="copyright far fa-copyright"></i> 2019 VLink Express Courier Ltd. All Rights Reserved.
</p>
<!-- Social Media icons -->
<div class="div-footer-followus">
<p>
<a target="_blank" href="https://www.facebook.com/vlinkexpresscourier">
<img src="images/facebook.png" class="footer-FB" alt="facebook icon">
</a>
<a target="_blank" href="https://www.instagram.com/vlinkexpresscourier">
<img src="images/instagram.png" class="footer-INSTA" alt="instagram icon">
</a>
<a target="_blank" href="https://www.twitter.com/vlinkexpresscourier">
<img src="images/twitter.png" class="footer-INSTA" alt="twitter icon">
</a>
<a target="_blank" href="https://www.linkedin.com/vlinkexpresscourier">
<img src="images/linkedin.png" class="footer-LI" alt="linkedin icon">
</a>
</p>
</div>
<!-- Footer Links -->
<div>
<ul class="footerlinks">
<li style="padding-left: 0" class="footerlinkitem"><a href="privacy.html" class="active">Privacy Policy</a></li>
<li class="footerlinkitem"><a href="terms.html">Terms</a></li>
<li class="footerlinkitem"><a href="about.html">About</a></li>
<li style="padding-right: 0" class="footerlinkitem"><a href="contact.php">Contact</a></li>
</ul>
</div>
</footer>
</html>