-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefund.html
More file actions
135 lines (122 loc) · 5.53 KB
/
refund.html
File metadata and controls
135 lines (122 loc) · 5.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refund Policy - Rhyno EV</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: 'Lato', sans-serif;
background-color: #f7f7f7;
color: #333;
padding: 20px;
}
.refund-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);
}
.refund-container h1 {
text-align: center;
margin-bottom: 20px;
color: brown;
}
.refund-container p {
margin-bottom: 15px;
line-height: 1.6;
}
.refund-container ul {
list-style-type: disc;
padding-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><br>
<a href="product2.html">SE03</a><br>
<a href="product3.html">SE03 Max</a><br>
<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>
<div class="refund-container">
<h1>Refund Policy</h1>
<p>At Rhyno EV, we are committed to ensuring customer satisfaction. If you are not satisfied with your purchase, we are here to help.</p>
<h2>Returns</h2>
<p>You have 30 calendar days to return an item from the date you received it. To be eligible for a return, your item must be unused and in the same condition that you received it. Your item must be in the original packaging and accompanied by the receipt or proof of purchase.</p>
<h2>Refunds</h2>
<p>Once we receive your item, we will inspect it and notify you that we have received your returned item. We will immediately notify you of the status of your refund after inspecting the item.</p>
<p>If your return is approved, we will initiate a refund to your credit card (or original method of payment). You will receive the credit within a certain amount of days, depending on your card issuer's policies.</p>
<h2>Shipping</h2>
<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>
<h2>Contact Us</h2>
<p>If you have any questions on how to return your item to us, contact us at:</p>
<p>Email: <a href="mailto:support@rhyno.in">support@rhyno.in</a></p>
<p>Phone: +91-9023987528</p>
<p>Address: Rhyno Wheels Private Limited, Near UG Hostel Gate #2, Behind PDEU, Raisan, Gandhinagar, Gujarat, India</p>
<div class="copyright">
<p>© 2024 Rhyno EV. All rights reserved.</p>
</div>
</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>
<script src="scripts.js"></script>
</body>
</html>