-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtos.html
79 lines (79 loc) · 5.47 KB
/
tos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - LifeWithAlz</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
@apply bg-gray-900 text-gray-100;
}
h1, h2 {
@apply text-3xl font-bold mb-4;
}
p, ul {
@apply mb-4;
}
ul {
@apply list-disc list-inside;
}
</style>
</head>
<body class="font-sans leading-relaxed">
<nav class="bg-gray-800 p-4">
<div class="container mx-auto flex justify-between items-center">
<a href="#" class="text-xl font-bold text-white">LifeWithAlz</a>
<div>
<a href="/index.html" class="text-gray-300 hover:text-white mx-2">Home</a>
<a href="/index.html#about" class="text-gray-300 hover:text-white mx-2">About</a>
<a href="/index.html#contact" class="text-gray-300 hover:text-white mx-2">Contact</a>
</div>
</div>
</nav>
<div class="container mx-auto p-4">
<h1>Terms of Service</h1>
<p>Welcome to LifeWithAlz! These terms and conditions outline the rules and regulations for the use of our website.</p>
<h2>1. Introduction</h2>
<p>By accessing this website, we assume you accept these terms and conditions. Do not continue to use LifeWithAlz if you do not agree to all of the terms and conditions stated on this page.</p>
<h2>2. Cookies</h2>
<p>We employ the use of cookies. By accessing LifeWithAlz, you agreed to use cookies in agreement with our Privacy Policy.</p>
<h2>3. License</h2>
<p>Unless otherwise stated, LifeWithAlz and/or its licensors own the intellectual property rights for all material on LifeWithAlz. All intellectual property rights are reserved. You may access this from LifeWithAlz for your own personal use subjected to restrictions set in these terms and conditions.</p>
<h2>4. User Comments</h2>
<p>Certain parts of this website offer the opportunity for users to post and exchange opinions and information in certain areas of the website. LifeWithAlz does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of LifeWithAlz, its agents, and/or affiliates. Comments reflect the views and opinions of the person who posts their views and opinions.</p>
<h2>5. Hyperlinking to our Content</h2>
<p>The following organizations may link to our Website without prior written approval:</p>
<ul>
<li>Government agencies;</li>
<li>Search engines;</li>
<li>News organizations;</li>
<li>Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and</li>
<li>System-wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.</li>
</ul>
<h2>6. iFrames</h2>
<p>Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.</p>
<h2>7. Content Liability</h2>
<p>We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.</p>
<h2>8. Your Privacy</h2>
<p>Please read Privacy Policy</p>
<h2>9. Reservation of Rights</h2>
<p>We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it’s linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.</p>
<h2>10. Removal of links from our website</h2>
<p>If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.</p>
<h2>11. Disclaimer</h2>
<p>To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:</p>
<ul>
<li>limit or exclude our or your liability for death or personal injury;</li>
<li>limit or exclude our or your liability for fraud or fraudulent misrepresentation;</li>
<li>limit any of our or your liabilities in any way that is not permitted under applicable law; or</li>
<li>exclude any of our or your liabilities that may not be excluded under applicable law.</li>
</ul>
</div>
<footer class="bg-gray-800 p-4 mt-8">
<div class="container mx-auto text-center text-gray-400">
© 2023 LifeWithAlz. All rights reserved.
</div>
</footer>
</body>
</html>