-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
144 lines (125 loc) · 5.88 KB
/
terms.html
File metadata and controls
144 lines (125 loc) · 5.88 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Conditions - Rhyno EV</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: 'Lato', sans-serif;
background-color: #f7f7f7;
color: #333;
padding: 20px;
}
.terms-container {
max-width: 800px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.terms-container h1 {
text-align: center;
color: brown;
}
.terms-container h2 {
color: #202020;
margin-top: 20px;
}
.terms-container p {
line-height: 1.6;
margin: 10px 0;
}
.terms-container ul {
list-style-type: disc;
margin-left: 20px;
}
.copyright {
text-align: center;
margin-top: 20px;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="logo1.png" width="400" alt="Rhyno EV Logo">
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li class="dropdown">
<a href="products.html">Products</a>
<div class="dropdown-content">
<a href="product1.html">SE03 Lite</a>
<a href="product2.html">SE03</a>
<a href="product3.html">SE03 Max</a>
<a href="compare.html">Compare All</a>
</div>
</li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="prebook.html">Pre-book Now</a></li>
<li>
<a href="https://www.instagram.com/rhyno.in?igsh=Z2xtZnJoNjVrNnd3" target="_blank">
<img src="insta.jpeg" width="20" alt="Instagram" />
</a>
</li>
<li>
<a href="https://www.linkedin.com/company/rhyno-wheels/" target="_blank">
<img src="linkedin.png" width="20" alt="LinkedIn" />
</a>
</li>
</ul>
</nav>
</header>
<main class="terms-container">
<h1>Terms & Conditions</h1>
<h2>Introduction</h2>
<p>Welcome to Rhyno EV's website. By accessing or using our website, you agree to be bound by these terms and conditions. If you do not agree with any part of these terms, please do not use our website.</p>
<h2>Use of the Website</h2>
<p>You agree to use our website only for lawful purposes and in a way that does not infringe the rights of others, restrict or inhibit anyone else's use and enjoyment of the website.</p>
<h2>Intellectual Property</h2>
<p>All content, trademarks, logos, and other intellectual property displayed on the website are owned by Rhyno EV or its licensors. You may not reproduce, distribute, or use any of this content without our express written permission.</p>
<h2>Privacy</h2>
<p>Your privacy is important to us. Please review our <a href="privacy.html">Privacy Policy</a> to understand how we collect, use, and protect your information.</p>
<h2>Limitation of Liability</h2>
<p>Rhyno EV shall not be liable for any damages arising out of your use of the website or products, including but not limited to direct, indirect, incidental, punitive, and consequential damages.</p>
<h2>Changes to Terms</h2>
<p>We reserve the right to modify these terms and conditions at any time. Any changes will be effective immediately upon posting on this page. Your continued use of the website after any changes signifies your acceptance of the new terms.</p>
<h2>Contact Information</h2>
<p>If you have any questions about these terms, please contact us at <a href="mailto:info@rhyno.in">info@rhyno.in</a>.</p>
<h2>Governing Law</h2>
<p>These terms and conditions are governed by and construed in accordance with the laws of India. Any disputes arising out of or in connection with these terms shall be subject to the exclusive jurisdiction of the courts of Gandhinagar, Gujarat.</p>
<div class="copyright">
<p>© 2024 Rhyno EV. All rights reserved.</p>
</div>
</main>
<footer>
<ul class="footer-links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="refund.html">Refund Policy</a></li>
<li><a href="terms.html">Website Policy</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="https://www.linkedin.com/company/rhyno-wheels/" target="_blank">Career</a></li>
<li><a href="rentals.html">Rentals</a></li>
<class="social-icons">
<li>
<a href="https://www.instagram.com/rhyno.in?igsh=Z2xtZnJoNjVrNnd3" target="_blank">
<img src="insta.jpeg" width="25" alt="Instagram" />
</a>
</li>
<li>
<a href="https://www.linkedin.com/company/rhyno-wheels/" target="_blank">
<img src="linkedin.png" width="25" alt="LinkedIn" />
</a>
</li>
</ul>
</footer>
</body>
</html>