-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrentals.html
More file actions
172 lines (158 loc) · 5.99 KB
/
rentals.html
File metadata and controls
172 lines (158 loc) · 5.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rhyno EV Rentals</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: 'Lato', sans-serif;
margin: 0;
padding: 0;
color: #FFF;
background-color: #202020;
}
header {
background-color: #252525;
padding: 1em 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2em;
}
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin: 0 1em;
}
.nav-links a {
text-decoration: none;
color: #FFF;
}
.content {
padding: 2em 1em;
text-align: center;
}
.content h1 {
font-size: 2em;
margin-bottom: 1em;
color: #F9ED32;
}
.content p {
font-size: 1.2em;
margin-bottom: 2em;
color: #EDEDED;
}
.download-buttons {
display: flex;
justify-content: center;
gap: 1em;
margin-top: 2em;
}
.download-buttons a {
display: flex;
align-items: center;
text-decoration: none;
background-color: #F9ED32;
color: #252525;
padding: 1em 2em;
border-radius: 50px;
font-family: 'Poppins', sans-serif;
font-weight: bold;
font-size: 1em;
transition: background-color 0.3s, transform 0.3s;
}
.download-buttons a:hover {
background-color: #FFF225;
transform: scale(1.05);
}
.download-buttons a:active {
transform: scale(0.95);
}
.download-buttons img {
width: 24px;
height: 24px;
margin-right: 0.5em;
}
</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>
<section class="content">
<h1>Rhyno EV Rentals</h1>
<h1>Explore the Roars of Rhyno!</h1>
<p>Explore the roars of Rhyno at your own pace with our rental options! Test the waters with our flexible rental model, available for a week or a month, allowing you to experience the Rhyno firsthand before committing. Simply visit our authorized dealerships to unlock this opportunity.</p>
<p>Additionally, we're redefining campus commuting with our rental fleet tailored for college students. Navigate your daily commute effortlessly by renting Rhyno vehicles on an hourly basis through our user-friendly mobile app. Embrace the freedom to ride and explore a new dimension in sustainable and convenient transportation.</p>
<div class="download-buttons">
<a href="https://play.google.com/store/apps" target="_blank">
<img src="googleplay.png" width = "25" alt="Download on Android">
Android
</a>
<a href="https://apps.apple.com/us/genre/ios/id36" target="_blank">
<img src="appstore.png" width = "40" alt="Download on Apple">
Apple
</a>
</div>
</section>
<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>