forked from vishantrathi/woolconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms and service.html
310 lines (267 loc) · 14.9 KB
/
terms and service.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms and Services</title>
<link rel="stylesheet" href="terms and service.css" />
<link rel="stylesheet" href="./styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<script
src="https://kit.fontawesome.com/a076d05399.js"
crossorigin="anonymous"
></script>
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="navbar.css" />
</head>
<body>
<div class="container">
<!-- Navbar Section -->
<nav class="navbar">
<div class="navcontainer">
<!-- Logo -->
<a href="#" class="logo">
<img
src="./images/DALL·E 2023-09-11 20.54.30 - Make exact like this image.png"
alt="logo"
height="50"
width="50"
/>
</a>
<!-- Login and SignUp Buttons -->
<div
class="auth-buttons"
style="display: flex; gap: 10px; margin-left: 20px"
>
<a href="Log in.html" class="auth-button">Login</a>
<a href="signup.html" class="auth-button">SignUp</a>
</div>
<!-- Navbar Toggle Button for Mobile -->
<button class="nav-toggle" id="nav-toggle">☰</button>
<!-- Navbar Links -->
<ul class="nav-links" id="nav-links" style="margin-left: auto">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Doctor</a></li>
<li><a href="demand.html">Demand</a></li>
<li>
<a href="Privacy policy.html" class="active">Privacy Policy</a>
</li>
<li><a href="terms and service.html">Terms and Services</a></li>
<li><a href="contributors/contributor.html">Contributors</a></li>
</ul>
</div>
</nav>
<div class="container2">
<div class="overlay">
<h1><i class="fas fa-file-contract"></i> Terms and Conditions</h1>
<p style="font-weight: bold; color: black;">
Understand the rules and policies governing the use of our website and services.
</p>
<section>
<h2>Introduction</h2>
<p>Welcome to <strong>Wool Connect</strong>. By using our website and services, you agree to comply with the terms outlined in this document. These Terms and Conditions govern your use of our platform and outline your rights and responsibilities. Please read them carefully.</p>
</section>
<section>
<h2>Eligibility</h2>
<p>You must be at least 18 years old to use our website and services. By accessing our platform, you confirm that you meet this age requirement and can form a binding contract under applicable laws.</p>
</section>
<section>
<h2>Use of Services</h2>
<p>Our services are provided for personal and non-commercial use. You agree not to misuse our platform, including but not limited to unauthorized access, data mining, or distributing harmful content.</p>
</section>
<section>
<h2>Intellectual Property</h2>
<p>All content, logos, and trademarks displayed on our website are the property of <strong>Wool Connect</strong>. Unauthorized use of our intellectual property is strictly prohibited.</p>
</section>
<section>
<h2>Limitation of Liability</h2>
<p>While we strive to provide accurate information and reliable services, we are not responsible for any direct or indirect damages resulting from your use of our platform. This includes loss of data, revenue, or unauthorized access.</p>
</section>
<section>
<h2>Changes to Terms</h2>
<p>We reserve the right to modify these Terms and Conditions at any time. Changes will be communicated through our website. Your continued use of our platform constitutes acceptance of the updated terms.</p>
</section>
<section>
<h2>Contact Us</h2>
<p>If you have any questions or concerns about these Terms and Conditions, please reach out to us:</p>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Phone: +1-234-567-8901</li>
</ul>
</section>
</div>
</div>
</main>
</div>
<div style="height: 5px; background: linear-gradient(to right, #ff5757, #ff8e8e); margin-top: 12px;"></div>
<footer style="background: linear-gradient(to right, #000000, #434343); color: #ffffff; padding: 20px 15px; font-family: 'Arial', sans-serif; position: relative;">
<!-- Footer Container -->
<div class="footer-container" style="max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 20px;">
<nav class="navbar">
<div class="navcontainer">
<a href="#" class="logo">
<img src="./images/DALL·E 2023-09-11 20.54.30 - Make exact like this image.png" alt="logo" height="50" width="50" />
</a>
<div class="auth-buttons" style="display: flex; gap: 10px; margin-left: 20px;">
<a href="Log in.html" class="auth-button">Login</a>
<a href="signup.html" class="auth-button">SignUp</a>
</div>
<button class="nav-toggle" id="nav-toggle">☰</button>
<ul class="nav-links" id="nav-links" style="margin-left: auto;">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Doctor</a></li>
<li><a href="demand.html">Demand</a></li>
<li><a href="Privacy policy.html">Privacy Policy</a></li>
<li><a href="Terms and service.html" class="active">Terms and Services</a></li>
<li><a href="contributors/contributor.html">Contributors</a></li>
</ul>
</div>
</nav>
<header>
<h1>Terms and Services</h1>
</header>
<main>
<section>
<h2>1. Acceptance of Terms</h2>
<p>By accessing or using this website ("the Service"), you agree to be bound by these Terms of Service and all applicable laws and regulations. If you do not agree with any of these terms, you are prohibited from using or accessing this site. The materials contained in this website are protected by applicable copyright and trademark law</p>
</section>
<section>
<p><section>
<h2>2. Use of the Service</h2>
<p>By using our services, you agree to abide by the following conditions:</p>
<p><strong>i. Eligibility:</strong> You must be at least 18 years old or the legal age in your jurisdiction to use this service. By using the Service, you represent and warrant that you meet these eligibility requirements.</p>
<p><strong>ii. Personal Account:</strong> You are responsible for maintaining the confidentiality of your account credentials (username and password). You agree not to share your account information with others and to notify us immediately of any unauthorized access or use of your account.</p>
<p><strong>iii. Acceptable Use:</strong> You agree to use the Service in compliance with all applicable laws and regulations. You shall not engage in any activities that may harm, disrupt, or interfere with the Service or its users. This includes but is not limited to spamming, hacking, distributing malware, or engaging in any unlawful activities.</p>
<p><strong>iv. Content:</strong> You are solely responsible for any content you post or submit on the Service. You agree not to upload, share, or distribute content that is illegal, harmful, infringing, or violates the rights of others. We reserve the right to remove or restrict access to any content that violates these terms.</p>
<p><strong>v. Termination:</strong> We reserve the right to terminate or suspend your access to the Service at our discretion, with or without notice, for any violation of these terms or for any other reason we deem necessary.</p>
</section>
</p>
</section>
<!-- Add more sections for your terms and services here -->
</main>
<footer class="footer">
<div class="footer-container">
<div class="footer-info">
<h2>Contact Us</h2>
<p>
If you have any questions or inquiries, feel free to reach out to
us.
</p>
<p>Email:
<a href="mailto:[email protected]" style="color: white;" style="text-decoration: none;">[email protected]</a></p>
<div class="social-icons">
<a href="#" class="social-icon"
><i class="fab fa-facebook-f"></i
></a>
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-icon"
><i class="fab fa-instagram"></i
></a>
<a href="#" class="social-icon"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
<div class="copyright">
<p>© 2023 Wool Connect. All Rights Reserved.</p>
</div>
</footer>
<button id="scrollBtn" title="Go to top">
<i class="fa-solid fa-arrow-up fa-lg"></i>
</button>
<!-- Left Section (Logo and Description) -->
<div class="footer-left" style="flex: 2; min-width: 250px;">
<!-- Logo -->
<div class="footer-logo" style="margin-bottom: 10px; text-align: center;">
<div style="background-color: #2b2b2a; padding: 15px; border-radius: 6px; display: inline-block;">
<img src="images/DALL·E 2023-09-11 20.54.30 - Make exact like this image.png" alt="Logo" style="width: 40px; height: 40px; margin-bottom: 8px;">
<h1 style="margin: 0; font-size: 28px; font-weight: bold;">Wool Connect.</h1>
</div>
</div>
<!-- Description -->
<p style="font-size: 14px; line-height: 1.4; text-align: center;">
Wool is a natural, renewable fiber sourced from sheep and other animals, known for its warmth, softness, and durability. It’s perfect for creating comfortable, high-quality garments and textiles.
</p>
</div>
<!-- Quick Links Section -->
<div class="footer-section" style="flex: 1; min-width: 200px;">
<h2 style="font-size: 16px; margin-bottom: 8px;">Quick Links</h2>
<ul style="list-style: none; padding: 0;">
<li><a href="about.html" style="color: white; text-decoration: none; font-size: 14px;">Who We Are</a></li>
<li><a href="#" style="color: white; text-decoration: none; font-size: 14px;">Blog</a></li>
<li><a href="#" style="color: white; text-decoration: none; font-size: 14px;">Work With Us</a></li>
<li><a href="#" style="color: white; text-decoration: none; font-size: 14px;">Investor Relations</a></li>
<li><a href="contact.html" style="color: white; text-decoration: none; font-size: 14px;">Contact Us</a></li>
</ul>
</div>
<!-- Learn More Section -->
<div class="footer-section" style="flex: 1; min-width: 200px;">
<h2 style="font-size: 16px; margin-bottom: 8px;">Learn More</h2>
<ul style="list-style: none; padding: 0;">
<li><a href="Privacy policy.html" style="color: white; text-decoration: none; font-size: 14px;">Privacy Policy</a></li>
<li><a href="terms and service.html" style="color: white; text-decoration: none; font-size: 14px;">Terms of Service</a></li>
<li><a href="contributors/contributor.html" style="color: white; text-decoration: none; font-size: 14px;">Our Contributors</a></li>
</ul>
</div>
</div>
<!-- Social Links -->
<div class="social-links" style="text-align: center; margin-top: 20px;">
<ul style="list-style: none; padding: 0; display: flex; justify-content: center; gap: 15px;">
<li><a href="#" style="color: #ffffff; font-size: 18px; text-decoration: none;"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#" style="color: #ffffff; font-size: 18px; text-decoration: none;"><i class="fab fa-twitter"></i></a></li>
<li><a href="#" style="color: #ffffff; font-size: 18px; text-decoration: none;"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="#" style="color: #ffffff; font-size: 18px; text-decoration: none;"><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom" style="text-align: center; margin-top: 10px; font-size: 12px;">
<p>© <span id="ThisYear">2025</span> Wool Connect. All rights reserved.</p>
</div>
<!-- Footer Bottom Border -->
<div style="height: 5px; background: linear-gradient(to right, #414141, #000000); margin-top: 12px;"></div>
</footer>
<button id="scrollBtn" title="Go to top">
<i class="fa-solid fa-arrow-up fa-lg"></i>
</button>
<script>
const toggleButton = document.getElementById("nav-toggle");
const navLinks = document.getElementById("nav-links");
toggleButton.addEventListener("click", () => {
navLinks.classList.toggle("active");
});
// Get the button element
const scrollBtn = document.getElementById("scrollBtn");
// Show the button when the user scrolls down 20px from the top
window.onscroll = function () {
if (
document.body.scrollTop > 20 ||
document.documentElement.scrollTop > 20
) {
scrollBtn.style.display = "block";
} else {
scrollBtn.style.display = "none";
}
};
// Scroll to the top of the page when the button is clicked
scrollBtn.onclick = function () {
window.scrollTo({
top: 0,
behavior: "smooth",
});
};
</script>
</body>
</html>