-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (103 loc) · 6.18 KB
/
index.html
File metadata and controls
103 lines (103 loc) · 6.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rhyno EV - Home</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;700&display=swap" rel="stylesheet">
</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>
<section class="hero">
<h1>Let's Elevate Your Ride Experience With Rhyno – Where Superiority Meets <span id="changing-word">Style</span></h1>
</section>
<section class="vehicle-showcase">
<img src="grp.png" width="1500" alt="Rhyno EV"><br><br>
<button type="button" id="checkout-btn" class="checkout-btn" onclick="window.location.href='checkout.html'">Check Out</button>
</section>
<section class="usp-carousel">
<div class="usp-container">
<div class="usp-item active">
<h2>LFP Battery</h2>
<p>Rhyno is equipped with Lithium Iron Phosphate (LFP) batteries, renowned for their safety features—eliminating the risk of fire associated with other Lithium batteries. These batteries boast a broader temperature range, ideal for the diverse Indian climate. Our technology enhances Rhyno's longevity, complemented by an Active Balancing Smart Battery Management System (BMS) for extended life and reduced maintenance. Each battery undergoes rigorous waterproofing tests according to IP76 standards. But it doesn't stop there—our technology goes the extra mile in ensuring the battery's lasting durability. Connect with us to discover the thoughtful engineering behind our batteries!</p>
</div>
<div class="usp-item">
<h2>Wider Tyres</h2>
<p>Now, say goodbye to skidding and embrace the leaning turns! Featuring first-of-its-kind, 9.5-inch wider tyres that make this machine an enormous beast that ensures stability on different terrains such as wet roads, mud, and sand.</p>
</div>
<div class="usp-item">
<h2>Range Prediction</h2>
<p>Many budget-friendly electric scooters overlook this crucial feature, causing riders to experience range anxiety. With Rhyno, you can ride with peace of mind, thanks to the scooter providing precise information about the remaining battery.</p>
</div>
<div class="usp-item">
<h2>Extraordinary Experience</h2>
<p>Rhyno is more than just a mode of transportation. It is an experience of sheer comfort and style! A seamless fusion of minimalism, sophistication, and a touch of masculinity!</p>
</div>
<div class="usp-item">
<h2>Rugged and Simple Design</h2>
<p>We have had enough of the EVs looking and feeling like fragile plastic toys. Often fading out and shamelessly breaking in minor accidents, ending up spending weeks and months at service stations for complex repairs. We took a bold step of making something raw, rugged, and practical. We kept it so simple that even your trusted local mechanic can understand and repair most of it. If you have reached this far, why not to take a test ride? Click here to locate your nearest dealership or book a test ride at your home!</p>
</div>
</div>
<button class="carousel-prev">❮</button>
<button class="carousel-next">❯</button><br>
<a href="prebook.html" class="floating-btn">Pre-book Now</a>
</section>
</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>