This repository was archived by the owner on Jan 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTermsofUse.html
More file actions
92 lines (76 loc) · 4.81 KB
/
TermsofUse.html
File metadata and controls
92 lines (76 loc) · 4.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#importedFooter").load("./assets/commons/footer.txt");
$("#importedNavbar").load("./assets/commons/nav.txt");
});
</script>
<!-- Including Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="commonCSS.css">
</head>
<body>
<div id="importedNavbar"></div>
<div class="container mt-4">
<h1 class="text-center mb-4">Terms of Use</h1>
<p class="text-muted text-center">Last Updated: November 2023</p>
<div class="card shadow-sm p-4">
<h2 class="mb-3">Introduction</h2>
<p>These Terms of Use ("Terms") govern your use of our ecommerce website ([Your Website URL]) (the "Site").
By accessing or using the Site, you agree to be bound by these Terms.</p>
<h2 class="mb-3">Use of the Site</h2>
<p>You may use the Site only for lawful purposes and in accordance with these Terms. You agree not to:</p>
<ul>
<li>Violate any applicable laws or regulations.</li>
<li>Use the Site in any way that could damage, disable, overburden, or impair the Site.</li>
<li>Use any automated system or software to extract data from the Site.</li>
<li>Attempt to gain unauthorized access to the Site or its systems.</li>
<li>Interfere with the use and enjoyment of the Site by others.</li>
</ul>
<h2 class="mb-3">Products and Services</h2>
<p>We attempt to be as accurate as possible in describing our products and services on the Site. However, we
do not warrant that the descriptions are accurate, complete, reliable, current, or error-free.</p>
<h2 class="mb-3">Prices and Payment</h2>
<p>All prices are listed in [Your Currency] and are subject to change without notice. We accept various
forms of payment, as listed on the Site. You agree to pay all charges incurred by you or on your behalf
through the Site.</p>
<h2 class="mb-3">Shipping and Returns</h2>
<p>We ship products to [List of Countries/Regions]. Shipping costs and delivery times vary depending on the
destination. We have a [Link to Return Policy] that applies to all purchases made through the Site.</p>
<h2 class="mb-3">Intellectual Property</h2>
<p>The Site and its content, including but not limited to text, graphics, logos, images, and software, are
the property of [Your Company Name] or its licensors and are protected by intellectual property laws.
</p>
<h2 class="mb-3">Disclaimer of Warranties</h2>
<p>The Site and its content are provided on an "as is" and "as available" basis without warranties of any
kind, either express or implied.</p>
<h2 class="mb-3">Limitation of Liability</h2>
<p>We will not be liable for any damages arising from your use of the Site or your purchase of products or
services through the Site.</p>
<h2 class="mb-3">Indemnification</h2>
<p>You agree to indemnify and hold harmless [Your Company Name] and its officers, directors, employees,
agents, and affiliates from any claims, liabilities, damages, losses, costs, and expenses (including
attorneys' fees) arising from your use of the Site or your violation of these Terms.</p>
<h2 class="mb-3">Governing Law</h2>
<p>These Terms will be governed by and construed in accordance with the laws of [Your State/Country].</p>
<h2 class="mb-3">Changes to These Terms</h2>
<p>We may update these Terms from time to time. We will notify you of any changes by posting the new Terms
on the Site.</p>
<h2 class="mb-3">Contact Us</h2>
<p>If you have any questions about these Terms, please contact us at [Your Email Address].</p>
</div>
<div id="importedFooter"></div>
<!-- Including Bootstrap Script -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>