-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
181 lines (96 loc) · 4.65 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Boss Baby</title>
<link rel="stylesheet" href="style.css" type="text/css">
<!-- FONT AWSOME -->
<script src="https://kit.fontawesome.com/88ddfd17d7.js" crossorigin="anonymous"></script>
<!--GOOGLE FONTS-->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<!--DELIVERY STRIP -->
<div id="totop">
</div>
<div class="delivery_strip">
<div class="strip_content">
<i class="fas fa-truck"></i>
<h2>FREE DELIVERY WORLDWIDE</h2>
</div>
</div>
<!--NAVIGATION -->
<div class="nav-bar">
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a style="margin-top: 50px;" href="serum.html">SERUMS</a>
<a href="about.html">ABOUT US</a>
<a href="contact.html">CONTACT US</a>
<a href="blog.html">BLOG</a>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div id="main">
<button class="openbtn" onclick="openNav()">☰ MENU</button>
</div>
<div class="logo_img">
<a href="index.html"><img src="images/logo_boss.png" alt="this is the image of our logo" /></a>
</div>
<div class="basket">
<i class="fas fa-shopping-basket"></i>
</div>
</div>
<div class="policy-container">
<h2>Privacy Policy</h2>
<hr>
<h5>Last updated: July 01, 2020</h5>
<p>This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.
</p>
<br><br>
<p>We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the Privacy Policy Generator.
</p><br><br>
<p>Definitions
For the purposes of this Privacy Policy:
You means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable.
Company (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to BossBaby.
Affiliate means an entity that controls, is controlled by or is under common control with a party, where "control" means ownership of 50% or more of the shares, equity interest or other securities entitled to vote for election of directors or other managing authority.
</p><br><br>
<p>Account means a unique account created for You to access our Service or parts of our Service.
Website refers to BossBaby, accessible from https://marvelapp.com/projects/my
Service refers to the Website.
Country refers to: Ireland
</p><br><br>
<p>Service Provider means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used.
If you have any questions about this Privacy Policy, You can contact us:
By email: support@bossbaby.com</p>
</div>
<!--FOOTER-->
<div class="footer">
<div class="policies">
<a href="privacy.html" class="policy">Privacy Policy</a>
<a href="terms.html" class="policy">Terms Of Service</a>
</div>
<div class="social_icons">
<i class="fab fa-facebook-f icon-soc"></i>
<i class="fab fa-twitter icon-soc"></i>
<i class="fab fa-instagram icon-soc"></i>
</div>
</div>
<!--copyright bar-->
<div class="copyright">
<div class="copy-cont">
<h2>Copyright © 2020 BossBaby. All Rights Reserved</h2>
</div>
<div class="cards_icons">
<i class="fab fa-cc-visa payment-icons fa-2x"></i>
<i class="fab fa-apple-pay payment-icons fa-2x"></i>
<i class="fab fa-cc-mastercard payment-icons fa-2x"></i>
</div>
</div>
<script charset="utf-8" src="index.js" type="text/javascript"></script>
</body>
</html>