-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacyPolicy.html
More file actions
125 lines (115 loc) · 5.74 KB
/
privacyPolicy.html
File metadata and controls
125 lines (115 loc) · 5.74 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
<!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">
<title>FlavorForge</title>
<link rel="icon" href="icons/iconsymbol.svg" type="image/x-icon">
<style>
* {
font-family: Geist Mono;
background-color: rgba(35,43,66,255);
color: white;
font-size: 20px;
}
h1, h1+p {
text-align: center;
}
h1 {
font-size: 50px;
margin-top: 0;
color: orange;
}
.container {
margin-left: 400px;
margin-right: 400px;
line-height: 30px;
}
h2 {
font-size: 27px;
margin-top: 80px;
}
.backButton {
background-color: rgba(35,43,66,255);
font-weight: 600;
color: rgb(255, 255, 255);
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
padding-top: 10px;
margin-top: 25px;
margin-left: 25px;
border: none;
transition: 0.5s;
}
.backButton:hover {
background-color: orange;
color: rgba(35,43,66,255);
}
::-webkit-scrollbar {
background-color: rgba(35,43,66,255);
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: orange;
border-radius: 20px;
}
@keyframes appear {
from{
opacity: 0;
}
to{
opacity: 1;
}
}
body{
animation: appear 1s linear;
}
</style>
</head>
<body>
<button class="backButton" onclick="history.back()">Back</button>
<div class="container">
<h1>Privacy Policy</h1>
<p>Last Updated: [Date]</p>
<p>Welcome to FlavorForge ("we," "us," or "our"). This Privacy Policy explains how we collect, use, and disclose your information when you use our recipe website. By using our website, you consent to the practices described in this policy.</p>
<h2>1. Information We Collect</h2>
<p>We may collect personal information that you provide to us, including but not limited to your name, email address, and any other information you submit through forms on our website.</p>
<h2>2. How We Use Your Information</h2>
<p>We may use the information we collect for various purposes, including:</p>
<ul>
<li>To provide and maintain our website;</li>
<li>To notify you about changes to our website or your favorite recipes;</li>
<li>To allow you to participate in interactive features of our website when you choose to do so;</li>
<li>To provide customer support;</li>
<li>To gather analysis or valuable information so that we can improve our website;</li>
<li>To monitor the usage of our website;</li>
<li>To detect, prevent, and address technical issues;</li>
<li>To send you newsletters, marketing, or promotional materials if you have opted to receive them.</li>
</ul>
<h2>3. Disclosure of Your Information</h2>
<p>We may share your personal information in the following situations:</p>
<ul>
<li>With service providers to facilitate our website, such as email services or analytics;</li>
<li>To comply with legal obligations;</li>
<li>To protect and defend our rights and property;</li>
<li>To prevent or investigate possible wrongdoing in connection with the website;</li>
<li>To protect the personal safety of users of our website or the public;</li>
<li>To protect against legal liability.</li>
</ul>
<h2>4. Security of Your Information</h2>
<p>The security of your personal information is important to us. While we strive to use commercially acceptable means to protect your personal information, we cannot guarantee its absolute security.</p>
<h2>5. Links to Other Websites</h2>
<p>Our website may contain links to third-party websites that are not operated by us. We have no control over, and assume no responsibility for, the content, privacy policies, or practices of any third-party websites. We encourage you to review the privacy policy of every website you visit.</p>
<h2>6. User-Generated Content</h2>
<p>If you submit recipes or comments to our website, you grant us a non-exclusive, royalty-free, perpetual, and worldwide license to use, modify, distribute, and display that content. You represent and warrant that you have the rights to submit such content and that it does not infringe on any third party’s intellectual property or other rights.</p>
<h2>7. Children's Privacy</h2>
<p>Our website is not intended for children under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If you become aware that we have collected personal information from a child under 13, please contact us.</p>
<h2>8. Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. You are advised to review this Privacy Policy periodically for any changes.</p>
<h2>9. Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at [Your Email Address].</p>
</div>
</body>
</html>