-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermsOfUse.html
More file actions
120 lines (107 loc) · 6.12 KB
/
termsOfUse.html
File metadata and controls
120 lines (107 loc) · 6.12 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
<!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>Terms of Use</h1>
<p>Last Updated: [Date]</p>
<p>Welcome to kitchenFreak ("we," "us," or "our"). By accessing or using our website, you agree to comply with and be bound by these Terms of Use. If you do not agree to these terms, please do not use our website.</p>
<h2>1. Acceptance of Terms</h2>
<p>By using our website, you acknowledge that you have read, understood, and agree to be bound by these Terms of Use, as well as our Privacy Policy. We reserve the right to modify these Terms of Use at any time, and any changes will be effective upon posting. It is your responsibility to check these terms periodically for updates.</p>
<h2>2. Use of the Website</h2>
<p>You agree to use our website for lawful purposes only and in a manner that does not infringe the rights of or restrict or inhibit the use and enjoyment of the website by any third party. You agree not to:</p>
<ul>
<li>Post or transmit any unlawful, harmful, threatening, defamatory, obscene, or otherwise objectionable content;</li>
<li>Attempt to gain unauthorized access to any part of the website or its servers;</li>
<li>Engage in any activity that interferes with or disrupts the functioning of the website;</li>
<li>Copy, modify, distribute, or sell any content from the website without our prior consent.</li>
</ul>
<h2>3. Intellectual Property</h2>
<p>All content on the website, including but not limited to text, graphics, logos, images, and software, is the property of kitchenFreak or its content suppliers and is protected by copyright and other intellectual property laws. You may not reproduce, distribute, or otherwise use any content from our website without our express permission.</p>
<h2>4. User-Generated Content</h2>
<p>If you submit any content to our website, including recipes, comments, or other materials, 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>5. Links to Third-Party Sites</h2>
<p>Our website may contain links to third-party websites or services that are not owned or controlled by us. We are not responsible for the content or privacy practices of such third-party sites. You access these links at your own risk, and we encourage you to review the terms and privacy policies of any third-party site you visit.</p>
<h2>6. Disclaimer of Warranties</h2>
<p>Our website is provided "as is" without any warranties of any kind, express or implied, including but not limited to warranties of merchantability, fitness for a particular purpose, or non-infringement. We do not guarantee that the website will be available, error-free, or free of viruses or other harmful components.</p>
<h2>7. Limitation of Liability</h2>
<p>In no event will we be liable for any damages, including but not limited to direct, indirect, incidental, punitive, or consequential damages, arising from your use of or inability to use the website, even if we have been advised of the possibility of such damages.</p>
<h2>8. Indemnification</h2>
<p>You agree to indemnify and hold harmless kitchenFreak, its affiliates, officers, directors, employees, and agents from any claims, liabilities, damages, and expenses, including reasonable legal fees, arising out of your use of the website, your violation of these Terms of Use, or your violation of any rights of another party.</p>
<h2>9. Termination</h2>
<p>We reserve the right to terminate or suspend your access to the website at our discretion, without notice, for any reason, including your violation of these Terms of Use.</p>
<h2>10. Governing Law</h2>
<p>These Terms of Use shall be governed by and construed in accordance with the laws of [Your Jurisdiction], without regard to its conflict of law provisions.</p>
<h2>11. Contact Us</h2>
<p>If you have any questions about these Terms of Use, please contact us at [Your Email Address].</p>
</div>
</body>
</html>