-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
724 lines (719 loc) · 26.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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<title>Craydle</title>
<style>
:root {
--primary: #18244f;
--dark: #0e1636;
--light: #fafafa;
--default: #f1f1f1;
--grey: #8c97ac;
}
/* body {
font-size: 1.2rem;
} */
.text-grey {
color: var(--grey) !important;
}
.bg-primary {
background-color: var(--primary) !important;
}
.text-primary {
color: var(--primary) !important;
}
.bg-light {
background-color: var(--light);
}
.bg-default {
background-color: var(--default);
}
.border-primary,
input,
select,
textarea {
border-color: var(--primary) !important;
}
.btn-outline-primary {
color: var(--primary);
border-color: var(--primary);
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
background-color: var(--primary);
border-color: var(--primary);
}
.btn-primary {
background-color: var(--primary) !important;
border-color: var(--primary) !important;
}
.btn-primary:hover,
.btn-primary:active {
background-color: var(--dark);
border-color: var(--dark);
}
.row {
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 100%;
}
textarea {
resize: none;
}
label {
font-size: 11px;
position: absolute;
top: -7px;
left: 20px;
padding: 0 5px;
background-color: #f7e2d9;
}
.pr-0 {
padding-right: 0 !important;
}
.pl-0 {
padding-left: 0 !important;
}
.text-clip {
text-overflow: clip;
white-space: nowrap;
overflow: hidden;
/* max-width: 100px;
display: inline-block;
vertical-align: middle; */
}
h1 {
font-size: 3.5rem;
}
/* h2 {
font-size: 3rem
} */
h3 {
font-size: 2.2rem;
}
/* h4 {
font-size: 3.5rem
}
h5 {
font-size: 3.5rem
}
h6 {
font-size: 3.5rem
}
p {
}
*/
.fs-14 {
font-size: 14px !important;
}
.card-title {
font-size: 18px;
}
body {
transition: all 0.4s ease 0s;
}
#navbarSupportedContent {
top: 0;
right: -200px;
width: 200px;
position: fixed;
height: 100%;
overflow-y: auto;
z-index: 1000;
transition: all 0.4s ease 0s;
}
body.active,
body.active header {
right: 200px !important;
}
body.active #navbarSupportedContent {
right: 0;
}
@media (max-width: 768px) {
.course-image {
max-height: 200px;
}
}
@media (min-width: 768px) {
.border-md-transparent {
border-color: transparent !important;
}
}
@media (max-width: 1200px) {
.cover-map-with-faces {
position: absolute;
height: 200px;
top: 30%;
right: 10%;
}
.cover-label {
top: -15px;
}
}
</style>
</head>
<body class="container-fluid px-0 text-primary mx-auto position-relative">
<header
class="fixed-top d-flex flex-column flex-lg-row align-items-center p-1 px-lg-4 mb-3 bg-white border-bottom shadow-sm"
>
<nav class="navbar navbar-expand-lg w-100 navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="/"
><img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/logo.png"
/></a>
<div class="d-inline-block d-lg-none">
<button class="btn">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/search.svg"
/>
</button>
<button class="btn btn-primary d-inline-block d-lg-none">
Apply
</button>
<button id="menu-toggle" class="navbar-toggler" type="button">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse justify-content-end">
<ul
class="navbar-nav mb-2 mb-lg-0 col-xl-10 align-items-center justify-content-around"
>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Universities</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link text-reset dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Company
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Company</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Partner with us</a>
</li>
<button class="btn d-lg-inline-block d-none">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/search.svg"
/>
</button>
<button class="btn btn-primary d-lg-inline-block d-none">
Apply Now
</button>
<li class="nav-item d-flex align-items-center">
<div class="btn text-primary">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/phone.svg"
/>
</div>
<div>
<small>Call us 24/7</small>
<h5>+254 700 000 000</h5>
</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="" style="margin-top: 72px">
<!-- top section -->
<section class="p-5 pb-0" style="background: #e8e9ed">
<div class="row">
<div class="col-12">
<a class="text-decoration-none" href="/">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/chevron-left.svg"
/> <span class="fs-14" style="color: #8692a6">Homepage</span>
</a>
</div>
</div>
<br />
<div class="row gy-3">
<div class="col">
<h3>Company</h3>
</div>
</div>
<br />
</section>
<!-- section -->
<section
class="py-2 px-5"
style="
background: #e8e9ed;
background: linear-gradient(
to bottom,
#e8e9ed 0%,
#e8e9ed 50%,
#fff 50%,
#fff 100%
);
"
>
<div
class="row row-cols-4 py-2 rounded-pill"
style="background: #efeff6"
>
<div class="col">
<a class="btn rounded-pill text-reset fw-bold" href="#">
About <span class="d-none d-sm-inline">us</span>
</a>
</div>
<div class="col">
<a class="btn rounded-pill text-reset fw-bold" href="#">Careers</a>
</div>
<div class="col">
<a class="btn btn-primary rounded-pill fw-bold" href="#"
>Privacy <span class="d-none d-sm-inline">policy</span></a
>
</div>
<div class="col">
<a class="btn rounded-pill text-reset fw-bold text-clip" href="#"
>Terms <span class="d-none d-md-inline">of service</span></a
>
</div>
</div>
</section>
<!-- policy section -->
<section class="p-5 pt-4">
<h3>What Information this Privacy Notice Covers</h3>
<p>
This Privacy Notice covers information we collect from you through our
Site. Some of our Site’s functionality can be used without revealing
any Personally Identifiable Information, though for features or
Services related to the Content Offerings, Personally Identifiable
Information is required. In order to access certain features and
benefits on our Site, you may need to submit, or we may collect,
</p>
<p>
"Personally Identifiable Information" (i.e., information that can be
used to identify you)(may also be referred to as “personal data” or
“personal information”). Personally Identifiable Information can
include information such as your name, email address, IP address, and
device identifier, among other things. You are responsible for
ensuring the accuracy of the Personally Identifiable Information you
submit to Coursera. Inaccurate information may affect your ability to
use the Site, the information you receive when using the Site, and our
ability to contact you. For example, your email address should be kept
current because that is one of the primary manners in which we
communicate with you.
</p>
<br />
<h3>What You Agree to by Using Our Site</h3>
<p>
We consider that the legal bases for using your personal information
as set out in this Privacy Notice are as follows:
</p>
<ol>
<li>
Our use of your personal information is necessary to perform our
obligations under any contract with you (for example, to comply with
the Terms of Use of our Site which you accept by browsing our
website and/or to comply with our contract to provide Services to
you); or
</li>
<li>
Our use of your personal information is necessary for complying with
our legal obligations; or
</li>
<li>
Use of your personal information is necessary for our legitimate
interests or the legitimate interests of others. Our legitimate
interests are to:
<ul>
<li>run, grow and develop our business;</li>
<li>operate our Site and provide our Services;</li>
<li>select appropriately skilled and qualified suppliers;</li>
<li>
build relationships with partners and academic institutions;
</li>
<li>carry out research and statistical analysis;</li>
<li>carry out marketing and business development; and</li>
<li>for internal administrative and auditing purposes.</li>
<li>
consent, to send you certain communications or where you submit
certain information to us.
</li>
</ul>
</li>
</ol>
<p>
Which legal basis applies to a specific processing activity will
depend on the type of personal information processed and the context
in which it is processed.
</p>
<p>
If we rely on our (or another person's) legitimate interests for using
your personal information, we will undertake a balancing test to
ensure that our (or the other person's) legitimate interests are not
outweighed by your interests or fundamental rights and freedoms which
require protection of the personal information.
</p>
<p>
We may process your personal information in some cases for marketing
purposes on the basis of your consent (which you may withdraw at any
time as described below).
</p>
<p>
If we rely on your consent for us to use your personal information in
a particular way, but you later change your mind, you may withdraw
your consent by visiting your profile page and clicking the box to
remove consent or delete your account and we will stop doing so.
However, if you withdraw your consent, this may impact the ability for
us to be able to provide our Services to you.
</p>
<br />
<h3>What Information We Collect</h3>
<p>We gather two types of information about users through the Site:</p>
<p>
Information relating to your use of our Site. When users come to our
Site, we may track, collect, and aggregate information indicating,
among other things, which pages of our Site were visited, the order in
which they were visited, when they were visited, and which hyperlinks
were clicked. We also collect information from the URLs from which you
linked to our Site. Collecting such information may involve logging
the IP address, operating system and browser software used by each
user of the Site. We may be able to determine from an IP address a
user’s Internet Service Provider and the geographic location of his or
her point of connectivity. We also use (or may use) cookies and web
beacons when you visit our Site. For more information on our use of
cookies and web beacons, please refer to our Cookie Policy.
</p>
<p>
Personally Identifiable Information provided directly by you or via
third parties. We collect Personally Identifiable Information that you
provide to us when you register for an account, update or change
information for your account, purchase products or Services, complete
a survey, sign-up for email updates, participate in our public forums,
send us email messages, and/or participate in Content Offerings or
other Services on our Site. We may use the Personally Identifiable
Information that you provide to respond to your questions, provide you
the specific Content Offering and/or Services you select, send you
updates about Content Offerings or other Coursera events, and send you
email messages about Site maintenance or updates.
</p>
<ul>
<li>
Account Registration. If you register for an account on our Site,
you may be required to provide us with Personally Identifiable
Information such as your name and email address.
</li>
<li>
Updates. Coursera may offer you the ability to receive updates
either via email or by posting on portions of the Site only
accessible to registered users. In order to subscribe to these
Services, you may be required to provide us with Personally
Identifiable Information such as your name and email address.
</li>
<li>
Forums. Coursera may offer public forums from time to time (the
"Forums") where you can share comments and thoughts. In order to
participate in the Forums, you may be required to register with us
and/or provide us with Personally Identifiable Information such as
your name and email address. Please keep in mind that information
you post or make available in Forums will be publicly available. You
should not include any Personally Identifiable Information or other
information of a personal or sensitive nature, whether relating to
you or another person, in a Forum post. Please also reference our
Terms of Use and our Code of Conduct and additional information
about proper use of our Forums.
</li>
<li>
Participation in Content Offerings. Coursera offers users the
opportunity to participate in an Content Offerings on or through the
Site. If you desire to participate in a Content Offering, you will
be asked to provide us with certain information necessary to conduct
such a Content Offering. This information may include, among other
things, your name and email address.
</li>
</ul>
<p>
If you participate in a Content Offering, we may collect from you
certain student-generated content, such as assignments you submit to
instructors, peer-graded assignments, and peer grading student
feedback. We also collect course data, such as student responses to
in-video quizzes, standalone quizzes, exams, and surveys. You should
not include any Personally Identifiable Information or other
information of a personal or sensitive nature, whether relating to you
or another person, on assignments, exams, or surveys, except for
information required to participate or submit such assignments, exams,
or surveys.
</p>
</section>
</main>
<footer class="text-white">
<section class="row py-4 p-md-5 p-2 position-relative bg-primary">
<div class="col-12 col-md-3">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/logo-white.png"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/left-intersect.svg"
class="position-absolute d-none d-md-block"
style="left: 0; bottom: 0; height: calc(100% - 3rem)"
/>
</div>
<div class="col-12 col-md-6 order-1 order-md-0">
<div class="row">
<div class="col-6 col-md">
<h6>Company</h6>
<ul class="list-unstyled text-small footer-links">
<li>
<a class="text-reset text-decoration-none" href="#"
>About Us</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Contact</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Careers</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Terms & Conditions</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Privacy Policy</a
>
</li>
</ul>
</div>
<div class="col-6 col-md">
<h6>For Students</h6>
<ul class="list-unstyled text-small footer-links">
<li>
<a class="text-reset text-decoration-none" href="#"
>Courses</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Universities</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#">Blog</a>
</li>
</ul>
</div>
<div class="col-6 col-md">
<h6>For Universities</h6>
<ul class="list-unstyled text-small footer-links">
<li>
<a class="text-reset text-decoration-none" href="#"
>Become a Partner</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Request an Update</a
>
</li>
<li>
<a class="text-reset text-decoration-none" href="#"
>Customer Support</a
>
</li>
</ul>
</div>
<div
class="col-6 d-flex justify-content-around d-md-none align-items-start"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/facebook.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/twitter.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/youtube.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/instagram.svg"
/>
</div>
<div class="col-12 d-block d-md-none">
<div class="btn-group">
<button
type="button"
class="btn text-white dropdown-toggle"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya
</button>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="#"
><img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-12 col-md order-0 order-md-1">
<h6>Stay Updated</h6>
<div class="input-group input-group-lg mb-3">
<input
style="font-size: 14px"
class="form-control p-4 border-0"
placeholder="Stay in the loop - drop us your email"
aria-label="Stay in the loop - drop us your email"
aria-describedby="basic-addon2"
/>
<span class="input-group-text pr-4 bg-white" id="basic-addon2"
><button class="btn btn-primary">Subscribe</button></span
>
</div>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/right-intersect.svg"
class="position-absolute d-none d-md-block"
style="right: 0; top: 0; height: calc(100% - 6rem)"
/>
</div>
</section>
<section
class="row align-items-center w-100 mx-auto py-2"
style="background-color: var(--dark)"
>
<div class="col col-md-2 d-none d-md-block">
<div class="btn-group">
<button
type="button"
class="btn text-white dropdown-toggle"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya
</button>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="#"
><img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/kenya.svg"
/>
Kenya</a
>
</li>
</ul>
</div>
</div>
<div class="col-12 col-md text-center text-md-start">
© Copyright 2020 | All Rights Reserved
</div>
<div
class="col col-md-3 col-lg-2 d-md-flex justify-content-around d-none"
>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/facebook.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/twitter.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/youtube.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/instagram.svg"
/>
</div>
</section>
</footer>
<ul class="navbar-nav h-100 p-4" id="navbarSupportedContent">
<li class="nav-item">
<a class="nav-link text-reset" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Universities</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link text-reset dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Company
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Company</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-reset" href="#">Partner with us</a>
</li>
<button class="btn d-lg-inline-block d-none">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/search.svg"
/>
</button>
<button class="btn btn-primary d-lg-inline-block d-none">
Apply Now
</button>
<li class="nav-item d-flex align-items-center">
<div class="btn text-primary">
<img
src="https://cdn.jsdelivr.net/gh/BossBele/craydle@latest/images/phone.svg"
/>
</div>
<div>
<small>Call us 24/7</small>
<h5>+254 700 000 000</h5>
</div>
</li>
</ul>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
<script>
document
.querySelector("#menu-toggle")
.addEventListener("click", function (e) {
e.preventDefault();
document.querySelector("body").classList.toggle("active");
});
</script>
</body>
</html>