-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
305 lines (302 loc) · 20.2 KB
/
index.html
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Voltworks-Home</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/logo.png" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<style>
.slider {
width: 500px;
height: 300px;
/* background-color: yellow; */
margin-left: auto;
margin-right: auto;
margin-top: 0px;
text-align: center;
overflow: hidden;
}
.image-container {
width: 1500px;
/* background-color: pink; */
height: 300px;
clear: both;
position: relative;
-webkit-transition: left 2s;
-moz-transition: left 2s;
-o-transition: left 2s;
transition: left 2s;
}
.slide {
float: left;
margin: 0px;
padding: 0px;
position: relative;
}
#slide-1:target ~ .image-container {
left: 0px;
}
#slide-2:target ~ .image-container {
left: -500px;
}
#slide-3:target ~ .image-container {
left: -1000px;
}
.buttons {
position: relative;
top: -20px;
}
.buttons a {
display: inline-block;
height: 15px;
width: 15px;
border-radius: 50px;
background-color:#a0c334;
}
</style>
</head>
<body class="d-flex flex-column h-100">
<main class="flex-shrink-0">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container px-5">
<a class="navbar-brand" href="index.html"><img src="assets/logo.png" alt="..." style="max-height: 5vh;"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="pricing.html">Pricing</a></li> -->
<!-- <li class="nav-item"><a class="nav-link" href="faq.html">FAQ</a></li> -->
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdownBlog" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Blog</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdownBlog">
<li><a class="dropdown-item" href="blog-home.html">Blog Home</a></li>
<li><a class="dropdown-item" href="blog-post.html">Blog Post</a></li>
</ul>
</li> -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdownPortfolio" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Portfolio</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdownPortfolio">
<li><a class="dropdown-item" href="portfolio-overview.html">Portfolio Overview</a></li>
<li><a class="dropdown-item" href="portfolio-item.html">Portfolio Item</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header-->
<header class="bg-image py-5" style="background-image: url('assets/img/bg.jpeg');background-size: cover;background-position: center;height:90vh;display: flex;flex-direction: column;justify-content: center;align-items: right;text-align: center;padding: 0 20px;color: rgb(7, 7, 7);">
<div class="container px-5">
<div class="row gx-5 align-items-center justify-content-center">
<div class="col-lg-8 col-xl-7 col-xxl-6">
<div class="my-5 text-center text-xl-start">
<!-- <h1 class="display-5 fw-bolder text-white mb-2">EleVating your Drive</h1> -->
<h1 class="display-5 fw-bolder mb-2 text-center" style="color: #a1c431;"><span style="color: #4e4e4e;"><span style="color: #a1c431;"><big>E</big></span>le<span style="color: #a1c431;"><big>V</big></span>ating<span style="color: #a1c431;"> your Drive</span></span></h1>
<p class="lead fw-normal text-white-50 mb-4 text-center">Leading the Charge with Cutting-Edge Motors and Inverters, VoltWorks offers deeply engineered High performance auto-ancilliary components & comprehensive powertrain solutions for your Electric Vehicles</p>
<div class="d-grid gap-3 d-sm-flex justify-content-sm-center text-center">
<a class="btn btn-primary btn-lg px-4 me-sm-3" href="contact.html">Get Started</a>
<a class="btn btn-outline-light btn-lg px-4" href="about.html">Learn More</a>
</div>
</div>
</div>
<!-- <div class="col-xl-5 col-xxl-6 d-none d-xl-block text-center"> -->
<!-- <img class="img-fluid rounded-3 my-5" src="assets/logo.png" alt="..." /> -->
<!-- <div class="slider">
<span id="slide-1"></span>
<span id="slide-2"></span>
<span id="slide-3"></span>
<div class="image-container">
<img src="assets/logo.png" class="slide" width="500" height="300" />
<img src="assets/logo.png" class="slide" width="500" height="300" />
<img src="assets/logo.png" class="slide" width="500" height="300" />
</div>
<div class="buttons">
<a href="#slide-1"></a>
<a href="#slide-2"></a>
<a href="#slide-3"></a>
</div>
</div> -->
<!-- </div> -->
</div>
</div>
</header>
<!-- Features section-->
<!-- <section class="py-5" id="features">
<div class="container px-5 my-5">
<div class="row gx-5">
<div class="col-lg-4 mb-5 mb-lg-0"><h2 class="fw-bolder mb-0">A better way to start building.</h2></div>
<div class="col-lg-8">
<div class="row gx-5 row-cols-1 row-cols-md-2">
<div class="col mb-5 h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-collection"></i></div>
<h2 class="h5">Featured title</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
<div class="col mb-5 h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-building"></i></div>
<h2 class="h5">Featured title</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
<div class="col mb-5 mb-md-0 h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-toggles2"></i></div>
<h2 class="h5">Featured title</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
<div class="col h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-toggles2"></i></div>
<h2 class="h5">Featured title</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Testimonial section-->
<div class="py-5 bg-light">
<div class="container px-5 my-5">
<div class="row gx-5 justify-content-center">
<div class="col-lg-10 col-xl-7">
<div class="text-center">
<div class="fs-4 mb-4 fst-italic">"The VoltWorks e-Powertrain system enhances driving performance with optimized products that maximize efficiency. Its advanced technology and expertise in electric vehicles also produce a quieter, smoother and more pleasant driving experience."</div>
<!-- <div class="d-flex align-items-center justify-content-center">
<img class="rounded-circle me-3" src="https://dummyimage.com/40x40/ced4da/6c757d" alt="..." />
<div class="fw-bold">
Tom Ato
<span class="fw-bold text-primary mx-1">/</span>
CEO, Pomodoro
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- Blog preview section-->
<section class="py-5">
<div class="container px-5 my-5">
<div class="row gx-5 justify-content-center">
<div class="col-lg-8 col-xl-6">
<div class="text-center">
<h2 class="fw-bolder">From our blog</h2>
<p class="lead fw-normal text-muted mb-5">
Motors || Motor Controllers || ELectric Vehicles || Automotives</p>
</div>
</div>
</div>
<div class="row gx-5">
<div class="col-lg-4 mb-5">
<div class="card h-100 shadow border-0">
<img class="card-img-top" src="assets/img/blog1_1.png" alt="..." />
<div class="card-body p-4">
<!-- <div class="badge bg-primary bg-gradient rounded-pill mb-2">News</div> -->
<a class="text-decoration-none link-dark stretched-link" href="Blog1.html"><h5 class="card-title mb-3">How SMCs Can Unlock the Hidden Assets of Axial Flux Motors</h5></a>
<p class="card-text mb-0">Axial Flux Motors with high power density & SMCs with simplified & cost-effective manufacturing of complex shapes results into a motor, that is more durable, compact, and efficient with optimized performance & reduced costs.</p>
</div>
<div class="card-footer p-4 pt-0 bg-transparent border-top-0 invisible">
<div class="d-flex align-items-end justify-content-between">
<div class="d-flex align-items-center">
<img class="rounded-circle me-3" src="https://dummyimage.com/40x40/ced4da/6c757d" alt="..." />
<div class="small">
<div class="fw-bold">Kelly Rowan</div>
<div class="text-muted">March 12, 2022 · 6 min read</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="card h-100 shadow border-0">
<img class="card-img-top" src="assets/img/blog2_1.jpeg" alt="..." />
<div class="card-body p-4">
<!-- <div class="badge bg-primary bg-gradient rounded-pill mb-2">Media</div> -->
<a class="text-decoration-none link-dark stretched-link" href="Blog2.html"><h5 class="card-title mb-3">What It Takes for Voltworks to Make Customized Designs for Electric Motors</h5></a>
<p class="card-text mb-0">While the Indian EV market is flooded with Chinese imports of e-motor components, VoltWorks is here with the required expertise and experience to provide you with customized motor designs and its development for your electric vehicle with Indian needs.</p>
</div>
<div class="card-footer p-4 pt-0 bg-transparent border-top-0 invisible">
<div class="d-flex align-items-end justify-content-between">
<div class="d-flex align-items-center">
<img class="rounded-circle me-3" src="https://dummyimage.com/40x40/ced4da/6c757d" alt="..." />
<div class="small">
<div class="fw-bold">Josiah Barclay</div>
<div class="text-muted">March 23, 2022 · 4 min read</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="card h-100 shadow border-0">
<img class="card-img-top" src="assets/img/blog3_1.png" alt="..." />
<div class="card-body p-4">
<!-- <div class="badge bg-primary bg-gradient rounded-pill mb-2">News</div> -->
<a class="text-decoration-none link-dark stretched-link" href="Blog3.html"><h5 class="card-title mb-3">Motor control for your EV application</h5></a>
<p class="card-text mb-0">Our company specializes in providing cost-effective, optimized motor control solutions for your electric vehicle applications to develop customized solutions that meet the needs of Indian EV market. We focus on industry-standard production processes, quality management, and verification and validation testing.</p>
</div>
<div class="card-footer p-4 pt-0 bg-transparent border-top-0 invisible">
<div class="d-flex align-items-end justify-content-between">
<div class="d-flex align-items-center">
<img class="rounded-circle me-3" src="https://dummyimage.com/40x40/ced4da/6c757d" alt="..." />
<div class="small">
<div class="fw-bold">Evelyn Martinez</div>
<div class="text-muted">April 2, 2022 · 10 min read</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Call to action-->
<!-- <aside class="bg-primary bg-gradient rounded-3 p-4 p-sm-5 mt-5">
<div class="d-flex align-items-center justify-content-between flex-column flex-xl-row text-center text-xl-start">
<div class="mb-4 mb-xl-0">
<div class="fs-3 fw-bold text-white">New products, delivered to you.</div>
<div class="text-white-50">Sign up for our newsletter for the latest updates.</div>
</div>
<div class="ms-xl-4">
<div class="input-group mb-2">
<input class="form-control" type="text" placeholder="Email address..." aria-label="Email address..." aria-describedby="button-newsletter" />
<button class="btn btn-outline-light" id="button-newsletter" type="button">Sign up</button>
</div>
<div class="small text-white-50">We care about privacy, and will never share your data.</div>
</div>
</div>
</aside> -->
</div>
</section>
</main>
<!-- Footer-->
<footer class="bg-dark py-4 mt-auto">
<div class="container px-5">
<div class="row align-items-center justify-content-between flex-column flex-sm-row">
<div class="col-auto"><div class="small m-0 text-white">Copyright © Your Website 2022</div></div>
<div class="col-auto">
<!-- <a class="link-light small" href="#!">Privacy</a>
<span class="text-white mx-1">·</span>
<a class="link-light small" href="#!">Terms</a>
<span class="text-white mx-1">·</span>
<a class="link-light small" href="#!">Contact</a> -->
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>