-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
76 lines (75 loc) · 4.04 KB
/
about.html
File metadata and controls
76 lines (75 loc) · 4.04 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
<!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 = "200" 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="about-us">
<h1>About Us | Rhyno EV</h1>
<p>Established in 2019 by an automotive engineer with a vision for sustainable and robust mobility solutions, Rhyno EV is not just a company; it's a collective effort of a dynamic team of young individuals passionately driving innovation in the electric vehicle industry. We believe in engineering solutions that solve problems.</p>
<p>With our first product, we've taken a bold step to create something more than just a vehicle; it's a unique experience of elegance, comfort and style, addressing the pitfalls of conventional electric scooters. Our design prioritizes safety, eliminating concerns of fires and ensuring a longer battery lifespan with our battery technology. Perfectly suited for fleet operators, especially in tourist-centric locations like Goa, our rugged yet aesthetically appealing scooters are engineered for longevity and reliability. Join us as we pioneer a new era in sustainable and dependable electric transportation.</p>
<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>