-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
129 lines (115 loc) · 4.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- importing Bootstrap 4-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<!-- impoerting Custom styles -->
<link rel="stylesheet" href="assets/custom.css" />
<title>Quote Generator | Privacy Policy</title>
</head>
<body>
<header style="margin-top: -0.5px;" class="header">
<a href="index.html" class="logo">Quote Generator</a>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="about.html">About</a></li>
</ul>
</header>
<!-- START THE BODY -->
<style>
.container {
margin-top: 80px;
}
img {
margin-bottom: 5%;
}
</style>
<div class="wrapping">
<div class="jumbotron jumbotron-sm">
<div class="container">
<div class="row">
<div class="col-sm-12 col-lg-12">
<h1 class="h1">
Privacy Policy <small>- Quote Generator</small>
</h1>
</div>
</div>
</div>
</div>
<div class="container">
<h2>Privacy Policy</h2>
<p>
Your privacy is important to us. It is Quote Generator's
policy to respect your privacy regarding any information we may
collect from you across our website,
<a href="#">https://quotegenerator.com</a>, and other sites we own and operate.
</p>
<p>
We only ask for personal information when we truly need it to provide
a service to you. We collect it by fair and lawful means, with your
knowledge and consent. We also let you know why we’re collecting it
and how it will be used.
</p>
<p>
We only retain collected information for as long as necessary to
provide you with your requested service. What data we store, we’ll
protect within commercially acceptable means to prevent loss and
theft, as well as unauthorized access, disclosure, copying, use or
modification.
</p>
<p>
We don’t share any personally identifying information publicly or with
third-parties, except when required to by law.
</p>
<p>
Our website may link to external sites that are not operated by us.
Please be aware that we have no control over the content and practices
of these sites, and cannot accept responsibility or liability for
their respective privacy policies.
</p>
<p>
You are free to refuse our request for your personal information, with
the understanding that we may be unable to provide you with some of
your desired services.
</p>
<p>
Your continued use of our website will be regarded as acceptance of
our practices around privacy and personal information. If you have any
questions about how we handle user data and personal information, feel
free to contact us.
</p>
<p>This policy is effective as of 8 November 2019.</p>
</div>
</div>
<hr />
<footer class="container py-5">
<div class="row">
<div class="col-12 col-md">
<small class="d-block mb-3 text-muted">Copyright © 2020 Quote Generator · <a
href="privacy.html">Privacy Policy</a> · <a href="terms.html">Terms of Service</a></small>
</div>
<div class="col-6 col-md">
<h5>Navigations</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="index.html">Home</a></li>
<li><a class="text-muted" href="about.html">About</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5>We are social</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" target="_BLANK" href="https://twitter.com">Twitter</a></li>
<li><a class="text-muted" target="_BLANK" href="https://instagram.com">Instagram</a></li>
<li><a class="text-muted" target="_BLANK" href="https://facebook.com">Facebook </a></li>
</ul>
</div>
</div>
</footer>
<!-- importing custom js -->
<script src="assets/script.js"></script>
</body>
</html>