├── udrive ├── resources │ ├── customer'sProfile │ │ ├── Customer2.jpg │ │ ├── Customer3.jpg │ │ └── customer image.jpg │ ├── banner-images │ │ ├── udrive-banner-1.jpg │ │ ├── udrive-banner-2.jpg │ │ ├── udrive-banner-3.jpg │ │ └── mobDevice │ │ │ ├── mobcsrosel-1.jpg │ │ │ ├── mobcsrosel-2.jpg │ │ │ └── mobcsrosel-3.jpg │ ├── display │ │ └── batman-display image.png │ ├── js │ │ └── index.js │ ├── css │ │ └── styles.css │ └── favicon │ │ └── U-drive-favicon.svg └── index.html └── dem carouse; ├── main.css.map ├── main.css ├── main.scss └── index.html /udrive/resources/customer'sProfile/Customer2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/customer'sProfile/Customer2.jpg -------------------------------------------------------------------------------- /udrive/resources/customer'sProfile/Customer3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/customer'sProfile/Customer3.jpg -------------------------------------------------------------------------------- /udrive/resources/banner-images/udrive-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/banner-images/udrive-banner-1.jpg -------------------------------------------------------------------------------- /udrive/resources/banner-images/udrive-banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/banner-images/udrive-banner-2.jpg -------------------------------------------------------------------------------- /udrive/resources/banner-images/udrive-banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/banner-images/udrive-banner-3.jpg -------------------------------------------------------------------------------- /udrive/resources/display/batman-display image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/display/batman-display image.png -------------------------------------------------------------------------------- /udrive/resources/customer'sProfile/customer image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/customer'sProfile/customer image.jpg -------------------------------------------------------------------------------- /udrive/resources/banner-images/mobDevice/mobcsrosel-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/banner-images/mobDevice/mobcsrosel-1.jpg -------------------------------------------------------------------------------- /udrive/resources/banner-images/mobDevice/mobcsrosel-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/banner-images/mobDevice/mobcsrosel-2.jpg -------------------------------------------------------------------------------- /udrive/resources/banner-images/mobDevice/mobcsrosel-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaranRajiwade/U-drive/HEAD/udrive/resources/banner-images/mobDevice/mobcsrosel-3.jpg -------------------------------------------------------------------------------- /udrive/resources/js/index.js: -------------------------------------------------------------------------------- 1 | window.addEventListener("scroll", function () { 2 | const elements = document.querySelectorAll(".fade-in"); 3 | 4 | elements.forEach((element) => { 5 | const position = element.getBoundingClientRect(); 6 | 7 | if (position.top < window.innerHeight && position.bottom >= 0) { 8 | element.classList.add("visible"); 9 | } else { 10 | element.classList.remove("visible"); // optional, if you want the animation to reverse 11 | } 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /dem carouse;/main.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAAA,gBAAgB;EACZ,UAAU,EAAE,MAAM;EAElB,+BAAc;IACV,UAAU,EAAE,SAAS;EAGzB,4BAAY;IACR,UAAU,EAAE,MAAM;IAClB,WAAW,EAAE,IAAI;EAErB,sBAAK;IACD,UAAU,EAAE,KAAK;EAGrB,kBAAC;IACG,KAAK,EAAE,IAAI;;AAInB,2DAA2D;EACvD,eAAe;IACX,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI;;EAGhB,4BAAY;IACR,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,MAAM;IAClB,MAAM,EAAE,MAAM;EAElB,sBAAM;IACF,UAAU,EAAE,MAAM;IAClB,OAAO,EAAE,KAAK", 4 | "sources": [ 5 | "./main.css.map" 6 | ], 7 | "names": [], 8 | "file": "./main.css" 9 | } 10 | -------------------------------------------------------------------------------- /dem carouse;/main.css: -------------------------------------------------------------------------------- 1 | #carouselExample { 2 | text-align: center; 3 | margin-top: 50px; 4 | } 5 | #carouselExample .carousel-indicators { 6 | position: relative; 7 | bottom: 0; 8 | height: 150px; 9 | } 10 | #carouselExample .carousel-indicators li { 11 | width: auto; 12 | height: auto; 13 | text-indent: 0%; 14 | background-color: transparent; 15 | margin-left: 20px; 16 | margin-right: 20px; 17 | flex-direction: column; 18 | } 19 | #carouselExample .carousel-indicators li img { 20 | transition: 0.5s; 21 | } 22 | #carouselExample .carousel-indicators li.active { 23 | transition: 0.5s; 24 | } 25 | #carouselExample .carousel-indicators li.active img { 26 | transform: scale(1.5); 27 | transition: transform 1s ease-in-out; 28 | } 29 | #carouselExample .carousel-item { 30 | transition: 1s linear; 31 | } 32 | #carouselExample .blockquote { 33 | font-style: italic; 34 | font-weight: bold; 35 | } 36 | #carouselExample small { 37 | text-align: right; 38 | } 39 | #carouselExample i { 40 | color: #222; 41 | } 42 | @media screen and (min-width: 320px) and (max-width: 767px) { 43 | .carousel-title { 44 | font-size: 18px; 45 | margin-top: 20px; 46 | } 47 | #carouselExample .blockquote { 48 | font-size: 15px; 49 | text-align: center; 50 | margin: 20px 0; 51 | } 52 | #carouselExample small { 53 | text-align: center; 54 | display: block; 55 | } 56 | #carouselExample .carousel-indicators li { 57 | margin-left: 8px; 58 | margin-right: 8px; 59 | } 60 | #carouselExample .carousel-indicators li.active img { 61 | transform: scale(1.2); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /dem carouse;/main.scss: -------------------------------------------------------------------------------- 1 | #carouselExample { 2 | text-align: center; 3 | margin-top: 50px; 4 | 5 | .carousel-indicators { 6 | position: relative; 7 | bottom: 0; 8 | height: 150px; 9 | 10 | li { 11 | width: auto; 12 | height: auto; 13 | text-indent: 0%; 14 | background-color: transparent; 15 | margin-left: 20px; 16 | margin-right: 20px; 17 | flex-direction: column; 18 | 19 | img { 20 | transition: 0.5s; 21 | } 22 | 23 | &.active { 24 | transition: 0.5s; 25 | img { 26 | transform: scale(1.5); 27 | transition: transform 1s ease-in-out; 28 | } 29 | } 30 | } 31 | } 32 | 33 | .carousel-item { 34 | transition: 1s linear; 35 | } 36 | 37 | .blockquote { 38 | font-style: italic; 39 | font-weight: bold; 40 | } 41 | small { 42 | text-align: right; 43 | } 44 | 45 | i { 46 | color: #222; 47 | } 48 | } 49 | 50 | @media screen and (min-width: 320px) and (max-width: 767px) { 51 | .carousel-title { 52 | font-size: 18px; 53 | margin-top: 20px; 54 | } 55 | #carouselExample { 56 | .blockquote { 57 | font-size: 15px; 58 | text-align: center; 59 | margin: 20px 0; 60 | } 61 | small { 62 | text-align: center; 63 | display: block; 64 | } 65 | 66 | .carousel-indicators { 67 | li { 68 | margin-left: 8px; 69 | margin-right: 8px; 70 | &.active { 71 | img { 72 | transform: scale(1.2); 73 | } 74 | } 75 | } 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /dem carouse;/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bootstrap 4 Slider With Image, Text and Button 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | 30 | 31 | 32 | 33 | 34 | 35 | 39 | 40 | 41 | 42 |
43 |
44 |
45 |

46 | Bootstrap 4 Slider Testimonial 47 |

48 |
49 |
50 | 51 | 52 |
53 | 129 | 130 |
131 | 132 |
133 | 134 |
135 | 136 | 137 | 138 | 139 | 140 | 155 | 156 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /udrive/resources/css/styles.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap"); 2 | * { 3 | font-family: "Montserrat", sans-serif; 4 | } 5 | 6 | /* Style for Webkit browsers (Chrome, Safari) */ 7 | ::-webkit-scrollbar { 8 | width: 8px; /* Width of the scrollbar */ 9 | } 10 | 11 | ::-webkit-scrollbar-track { 12 | background: rgba(255, 255, 255, 0); /* Fully transparent track */ 13 | } 14 | 15 | ::-webkit-scrollbar-thumb { 16 | background: rgba(33, 37, 41, 1); /* Scrollbar thumb color */ 17 | border-radius: 10px; /* Rounded edges for the thumb */ 18 | } 19 | 20 | ::-webkit-scrollbar-thumb:hover { 21 | background: rgba(33, 37, 41, 0.8); /* Darker thumb on hover */ 22 | } 23 | 24 | /* Style for Firefox */ 25 | * { 26 | scrollbar-width: thin; /* Makes the scrollbar thin */ 27 | scrollbar-color: rgba(33, 37, 41, 1) rgba(255, 255, 255, 0); /* Thumb and track color */ 28 | } 29 | /* -------------------------------------------------------------------------------------------------- */ 30 | 31 | body { 32 | background: #f1fbff; 33 | } 34 | 35 | .section-padding-head { 36 | padding: 50px 0 80px 0; 37 | } 38 | 39 | .section-padding { 40 | padding: 80px 0; 41 | } 42 | .carousel-item { 43 | height: 500px; 44 | } 45 | .carousel-caption { 46 | z-index: 2; 47 | } 48 | .carousel-caption h5 { 49 | font-size: 45px; 50 | text-transform: uppercase; 51 | letter-spacing: 2px; 52 | margin-top: 25px; 53 | } 54 | .carousel-caption p { 55 | width: auto; 56 | margin: auto; 57 | font-size: 18px; 58 | line-height: 1.9; 59 | } 60 | .carousel-inner:before { 61 | content: ""; 62 | position: absolute; 63 | width: 100%; 64 | height: min-content; 65 | top: 0; 66 | left: 0; 67 | background: rgba(0, 0, 0, 0.3); 68 | z-index: 1; 69 | } 70 | 71 | .portfolio .card { 72 | box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15); 73 | } 74 | .team .card { 75 | box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15); 76 | } 77 | .services .card-body i { 78 | font-size: 50px; 79 | } 80 | .team .card-body i { 81 | font-size: 20px; 82 | } 83 | @media only screen and (min-width: 768px) and (max-width: 991px) { 84 | .carousel-caption p { 85 | width: 100%; 86 | } 87 | .card { 88 | margin-bottom: 30px; 89 | } 90 | .img-area img { 91 | width: 100%; 92 | } 93 | } 94 | 95 | .text-violet { 96 | color: #674188; /* Or use a specific hex code, e.g., #8A2BE2 */ 97 | } 98 | .text-large { 99 | font-size: 2rem; /* Adjust size as needed */ 100 | } 101 | .hover-text:hover { 102 | color: #674188; 103 | } 104 | 105 | /* Styles for tablet devices only */ 106 | @media (min-width: 600px) and (max-width: 900px) { 107 | .sidebar { 108 | background-color: rgba(33, 37, 41, 0.8); 109 | backdrop-filter: blur(10px); 110 | } 111 | 112 | .carousel-item { 113 | height: 325px; 114 | } 115 | 116 | .carousel-caption h5 { 117 | font-size: 16px; 118 | } 119 | .carousel-caption a { 120 | padding: 10px 15px; 121 | font-size: 15px; 122 | } 123 | .carousel-caption p { 124 | width: 100%; 125 | line-height: 1.6; 126 | font-size: 13px; 127 | } 128 | .about-text { 129 | padding-top: 50px; 130 | } 131 | .card { 132 | margin-bottom: 30px; 133 | } 134 | } 135 | 136 | /* Default offcanvas width for larger screens */ 137 | .navbar .offcanvas { 138 | width: 300px; /* Adjust this value as needed */ 139 | } 140 | 141 | /* Mobile-specific width */ 142 | @media (max-width: 576px) { 143 | .navbar .offcanvas { 144 | width: 280px; /* Adjust this value for mobile devices */ 145 | } 146 | } 147 | 148 | /* styles for mobile devices */ 149 | @media (max-width: 767px) { 150 | .sidebar { 151 | background-color: rgba(33, 37, 41, 0.8); 152 | backdrop-filter: blur(10px); 153 | } 154 | 155 | .carousel-item { 156 | height: 285px; 157 | } 158 | 159 | .carousel-caption h5 { 160 | font-size: 16px; 161 | } 162 | .carousel-caption a { 163 | padding: 10px 15px; 164 | font-size: 15px; 165 | } 166 | .carousel-caption p { 167 | width: 100%; 168 | line-height: 1.6; 169 | font-size: 13px; 170 | } 171 | .about-text { 172 | padding-top: 50px; 173 | } 174 | .card { 175 | margin-bottom: 30px; 176 | } 177 | } 178 | 179 | /* fade in animation on scroll1 */ 180 | .fade-in { 181 | opacity: 0; 182 | transition: opacity 0.96s ease-in; 183 | } 184 | 185 | .fade-in.visible { 186 | opacity: 1; 187 | } 188 | 189 | /* fade in animation onLoad */ 190 | @keyframes fadeInOnLoad { 191 | 0% { 192 | opacity: 0; 193 | } 194 | 100% { 195 | opacity: 1; 196 | } 197 | } 198 | 199 | .fadeInOnLoad { 200 | animation: fadeInOnLoad 0.8s ease-in; 201 | } 202 | 203 | @keyframes fadeInOnLoad-abut { 204 | 0% { 205 | opacity: 0; 206 | } 207 | 100% { 208 | opacity: 1; 209 | } 210 | } 211 | 212 | .fadeInOnLoad-abut { 213 | animation: fadeInOnLoad-abut 2s ease-in; 214 | } 215 | 216 | /* card background style */ 217 | .faint-green { 218 | background-color: rgba(245, 245, 245, 0.6); /* Light green with opacity */ 219 | } 220 | /* for smooth scroll */ 221 | html { 222 | scroll-behavior: smooth; 223 | } 224 | 225 | /* color gradient */ 226 | /* .g-color { 227 | background: linear-gradient(270deg, #ff7e5f, #feb47b, #ff7e5f); 228 | animation: gradient-animation 10s ease infinite; 229 | } 230 | @keyframes gradient-animation { 231 | 0% { 232 | background-position: 0% 50%; 233 | } 234 | 50% { 235 | background-position: 100% 50%; 236 | } 237 | 100% { 238 | background-position: 0% 50%; 239 | } 240 | } 241 | 242 | .content { 243 | z-index: 1; 244 | } */ 245 | 246 | body { 247 | background: #eeeeee; 248 | font-family: "Montserrat", sans-serif; 249 | } 250 | .wrapper { 251 | display: flex; 252 | flex-wrap: wrap; 253 | justify-content: center; 254 | gap: 20px; 255 | /* padding: 10% 0; */ 256 | } 257 | .review-card { 258 | background-color: rgba(245, 245, 245, 0.6); /* Light green with opacity */ 259 | border-radius: 10px; 260 | padding: 10px; 261 | width: 300px; 262 | box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3); 263 | } 264 | .img-area { 265 | width: 80px; 266 | height: 80px; 267 | overflow: hidden; 268 | border-radius: 50%; 269 | margin-right: 25px; 270 | } 271 | .img-area img { 272 | width: 100%; 273 | } 274 | .header-content { 275 | display: flex; 276 | align-items: center; 277 | margin-bottom: 10px; 278 | } 279 | .info h4 { 280 | margin: 0; 281 | font-size: 22px; 282 | font-weight: 600; 283 | } 284 | .info p { 285 | margin: 5px 0 0; 286 | font-size: 14px; 287 | font-weight: 400; 288 | color: #666; 289 | } 290 | .single-review p { 291 | margin: 0; 292 | font-size: 16px; 293 | font-weight: 400; 294 | line-height: 1.7; 295 | color: #333; 296 | } 297 | .review-footer { 298 | display: flex; 299 | justify-content: space-between; 300 | align-items: center; 301 | margin-top: 10px; 302 | font-size: 14px; 303 | color: #666; 304 | } 305 | .rating { 306 | display: flex; 307 | } 308 | .rating span { 309 | color: #000; 310 | font-size: 18px; 311 | } 312 | .rating span.active { 313 | color: #fbc02d; 314 | } 315 | @media screen and (max-width: 767px) { 316 | .wrapper { 317 | flex-direction: column; 318 | align-items: center; 319 | } 320 | .review-card { 321 | width: 85%; 322 | } 323 | } 324 | -------------------------------------------------------------------------------- /udrive/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | U-Drive 7 | 8 | 13 | 14 | 20 | 21 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 120 | 121 | 122 | 123 |
124 | 234 |
235 | 236 | 237 | 238 |
239 |
240 |
241 |
242 |
243 |

ABOUT US

244 |
245 |
246 |
247 |
248 |
249 |
250 | 255 |
256 |
257 |
258 |
259 |

260 | We Provide the Best Quality
261 | Services Ever 262 |

263 |

264 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. Totam, 265 | labore reiciendis. Assumenda eos quod animi! Soluta nesciunt 266 | inventore dolores excepturi provident, culpa beatae tempora, 267 | explicabo corporis quibusdam corrupti. Autem, quaerat. Assumenda 268 | quo aliquam vel, nostrum explicabo ipsum dolor, ipsa perferendis 269 | porro doloribus obcaecati placeat natus iste odio est non earum? 270 |

271 | Learn More 272 |
273 |
274 |
275 |
276 |
277 | 278 |
279 | 280 | 281 |
282 |
283 |
284 |
285 |
286 |

Our Services

287 |

288 | Lorem ipsum dolor sit amet, consectetur
289 | adipisicing elit. Non, quo. 290 |

291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 | 299 |

300 | Car Insurance
301 | Renewal 302 |

303 |

304 | Keep your vehicle protected with our expert assistance in 305 | renewing car insurance. We help you compare policies to find 306 | the best coverage tailored to your needs. 307 |

308 | 311 |
312 |
313 |
314 |
315 |
316 |
317 | 318 |

License Renewal Assistance

319 |

320 | Simplify renewing your driver’s license with our guidance. Our 321 | team helps you gather required documents and navigate 322 | necessary tests to stay legally on the road. 323 |

324 | 327 |
328 |
329 |
330 |
331 |
332 |
333 | 334 |

Vehicle Registration Services

335 |

336 | Avoid the hassle of vehicle registration with our 337 | comprehensive support. We handle all paperwork and ensure 338 | everything is filed accurately and submitted on time. 339 |

340 | 343 |
344 |
345 |
346 |
347 |
348 |
349 | 350 |

Traffic Violation Consultation

351 |

352 | If you’ve received a traffic ticket, we’re here to help. Our 353 | knowledgeable staff can guide you through your options, 354 | including contesting the ticket or attending traffic school. 355 |

356 | 359 |
360 |
361 |
362 |
363 |
364 |
365 | 366 |

Defensive Driving Courses

367 |

368 | Enhance your driving skills with our defensive driving 369 | courses. These classes teach valuable techniques that improve 370 | safety and may also lead to insurance discounts. 371 |

372 | 375 |
376 |
377 |
378 |
379 |
380 |
381 | 382 |

383 | Road Test
384 | Preparation 385 |

386 |

387 | Get ready for your driving test with our personalized 388 | preparation services. Our experienced instructors provide 389 | tailored guidance and practice sessions to boost your 390 | confidence. 391 |

392 | 395 |
396 |
397 |
398 |
399 |
400 |
401 | 402 | 403 | 404 |
405 | 406 | 407 |
408 |
409 |
410 |
411 |
412 |

Our Team

413 |

414 | Meet Our Team Our certified instructors at New Drive are 415 | dedicated to helping you become a confident, safe driver. With 416 | personalized lessons and years of experience, we’re here to 417 | guide you every step of the way! 418 |

419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 | 431 |

Jack Wilson

432 |

433 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 434 | Sequi ipsam nostrum illo tempora esse quibusdam. 435 |

436 |

437 | 438 | 439 | 440 | 441 |

442 |
443 |
444 |
445 |
446 |
447 |
448 | 453 |

Lucky the Racer

454 |

455 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 456 | Sequi ipsam nostrum illo tempora esse quibusdam. 457 |

458 |

459 | 460 | 461 | 462 | 463 |

464 |
465 |
466 |
467 |
468 |
469 |
470 | 475 |

Jack Wilson

476 |

477 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 478 | Sequi ipsam nostrum illo tempora esse quibusdam. 479 |

480 |

481 | 482 | 483 | 484 | 485 |

486 |
487 |
488 |
489 |
490 |
491 |
492 | 497 |

Jon Doe

498 |

499 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 500 | Sequi ipsam nostrum illo tempora esse quibusdam. 501 |

502 |

503 | 504 | 505 | 506 | 507 |

508 |
509 |
510 |
511 |
512 |
513 |
514 | 515 | 516 |
517 | 518 | 519 | 520 |
521 |
522 |
523 |
524 |
525 |

Investment in Your Driving Future

526 |

527 | At New Drive, we offer transparent and affordable packages to 528 | suit every budget. Choose the perfect plan to kickstart your 529 | journey to becoming a confident driver! 530 |

531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |

Basic

539 |
540 |
541 |

542 | $20/mo 543 |

544 |
    545 |
  • 2 & 4-Wheeler Licenses (No Training)
  • 546 |
  • Documentation assistance
  • 547 |
  • Quick processing
  • 548 |
  • Support for any inquiries
  • 549 |
550 | 556 |
557 |
558 |
559 |
560 |
561 |
562 |

Comprehensive Training

563 |
564 |
565 |

566 | $30/mo 567 |

568 |
    569 |
  • Comprehensive four-wheeler training
  • 570 |
  • Personalized instruction
  • 571 |
  • Road test preparation
  • 572 |
  • Ongoing support and resources
  • 573 |
574 | 577 |
578 |
579 |
580 |
581 |
582 |
583 |

Comprehensive Training

584 |
585 |
586 |

587 | $45/mo 588 |

589 |
    590 |
  • Dual training for two and four-wheelers
  • 591 |
  • Flexible lesson scheduling
  • 592 |
  • Expert instructors
  • 593 |
  • Access to practice materials
  • 594 |
595 | 598 |
599 |
600 |
601 |
602 |
603 |
604 | 605 | 606 |
607 | 608 | 609 | 610 |
611 |
612 |
613 |
614 |
615 |
616 |

Success Stories from Our Students

617 |

618 | Discover how our expert instructors have helped students 619 | become confident drivers. Read their testimonials and see why 620 | U-Drive is the right choice for your driving journey! 621 |

622 |
623 |
624 |
625 |
626 |
627 |
628 | customer1 632 |
633 |
634 |

John Doe

635 |

Maketing Manager

636 |
637 |
638 |
639 |

640 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo 641 | dolor eveniet deleniti repellendus! Minima, dolorum. 642 |

643 |
644 | 654 |
655 |
656 |
657 |
658 | customer1 662 |
663 |
664 |

Mark Wood

665 |

Graphics Expert

666 |
667 |
668 |
669 |

670 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo 671 | dolor eveniet deleniti repellendus! Minima, dolorum. 672 |

673 |
674 | 684 |
685 |
686 |
687 |
688 | customer1 692 |
693 |
694 |

Jason Chedd

695 |

Web Designer

696 |
697 |
698 |
699 |

700 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo 701 | dolor eveniet deleniti repellendus! Minima, dolorum. 702 |

703 |
704 | 714 |
715 |
716 |
717 |
718 | 719 | 720 | 721 | 722 |
723 | 756 |
757 | 758 | 759 | 760 | 761 | 762 | 777 | 778 | 784 | 785 | 786 | 791 | 792 | 793 | 797 | 798 | 799 | 800 | -------------------------------------------------------------------------------- /udrive/resources/favicon/U-drive-favicon.svg: -------------------------------------------------------------------------------- 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 | --------------------------------------------------------------------------------