-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
128 lines (117 loc) · 6.37 KB
/
terms.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
<!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 - Jayzilla Services</title>
<link rel="icon" type="image/png" href="images/icon.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="Jayzilla Logo" class="logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service-request.html">Request Service</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Terms Content -->
<section class="py-5">
<div class="container">
<h1 class="mb-4">Terms of Service</h1>
<div class="card shadow-sm">
<div class="card-body">
<h2 class="h5 mb-3">1. Acceptance of Terms</h2>
<p>By accessing and using Jayzilla Services, you agree to be bound by these Terms of Service. If you do not agree to these terms, please do not use our services.</p>
<h2 class="h5 mb-3 mt-4">2. Services</h2>
<p>Jayzilla Services provides lawn care and transportation services. We reserve the right to modify, suspend, or discontinue any aspect of our services at any time.</p>
<h2 class="h5 mb-3 mt-4">3. User Responsibilities</h2>
<ul class="mb-4">
<li>Provide accurate and complete information when using our services</li>
<li>Maintain the security of your account credentials</li>
<li>Comply with all applicable laws and regulations</li>
<li>Use our services in a respectful and lawful manner</li>
</ul>
<h2 class="h5 mb-3 mt-4">4. Service Scheduling and Cancellation</h2>
<p>We require 24-hour notice for service cancellations. Late cancellations may incur a fee. We reserve the right to cancel or reschedule services due to weather conditions or other circumstances.</p>
<h2 class="h5 mb-3 mt-4">5. Payment Terms</h2>
<p>Payment is required at the time of service unless otherwise arranged. We accept major credit cards and other specified payment methods. Prices are subject to change without notice.</p>
<h2 class="h5 mb-3 mt-4">6. Liability</h2>
<p>Jayzilla Services is not liable for any indirect, incidental, special, consequential, or punitive damages resulting from your use of our services.</p>
<h2 class="h5 mb-3 mt-4">7. Privacy</h2>
<p>Your use of our services is also governed by our Privacy Policy. Please review our <a href="privacy.html">Privacy Policy</a> to understand our practices.</p>
<h2 class="h5 mb-3 mt-4">8. Modifications to Terms</h2>
<p>We reserve the right to modify these terms at any time. Continued use of our services after any changes constitutes acceptance of the modified terms.</p>
<div class="mt-4">
<p class="mb-0"><strong>Last Updated:</strong> December 29, 2024</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row justify-content-between">
<div class="col-md-5 footer-section">
<h4>Contact Info</h4>
<div class="footer-contact">
<p>
<i class="fas fa-map-marker-alt"></i>
123 Service Street, City, State
</p>
<p>
<i class="fas fa-phone"></i>
(555) 123-4567
</p>
<p>
<i class="fas fa-envelope"></i>
</p>
<p>
<i class="fas fa-clock"></i>
Mon - Sat: 8:00 AM - 6:00 PM
</p>
</div>
</div>
<div class="col-md-5 footer-section">
<div class="social-section">
<h4>Connect With Us</h4>
<p>Follow us on social media for updates, tips, and special offers.</p>
<div class="social-links">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Jayzilla Services. All rights reserved.</p>
<div class="legal-links">
<a href="terms.html">Terms of Service</a> | <a href="privacy.html">Privacy Policy</a>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>