Easy And Fast Way To Rent Your Car
38 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore accusamus nobis similique ab 39 | praesentium itaque dolore quidem debitis distinctio laborum!
40 |
47 | ├── README.md ├── verna.png ├── bmw-22428.png ├── script.js ├── style.css └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # car-rental-website -------------------------------------------------------------------------------- /verna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developergtm24/car-rental-website/HEAD/verna.png -------------------------------------------------------------------------------- /bmw-22428.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developergtm24/car-rental-website/HEAD/bmw-22428.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | Friends, I have not used JavaScript in this project, I have only created this file so that you do not face any problem. 2 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | font-family: Arial, Helvetica, sans-serif; 5 | } 6 | 7 | .nav { 8 | display: flex; 9 | justify-content: center; 10 | align-items: center; 11 | height: 70px; 12 | background-color: white; 13 | column-gap: 220px; 14 | } 15 | 16 | .nav .item { 17 | display: flex; 18 | column-gap: 20px; 19 | } 20 | 21 | .nav .btn { 22 | display: flex; 23 | column-gap: 20px; 24 | } 25 | 26 | .nav .btn input { 27 | padding: 10px 30px; 28 | border: none; 29 | border-radius: 10px; 30 | cursor: pointer; 31 | background-color: #0043ff8c; 32 | } 33 | 34 | .nav .btn .login { 35 | padding: 10px 30px; 36 | border-radius: 10px; 37 | cursor: pointer; 38 | border: 2px solid #0043ff8c; 39 | background-color: white; 40 | color: #0043ff8c; 41 | } 42 | 43 | .nav .item a { 44 | text-decoration: none; 45 | color: black; 46 | font-weight: 700; 47 | cursor: pointer; 48 | } 49 | 50 | .nav .item .home-btn { 51 | color: #0043ff8c; 52 | font-weight: 700; 53 | } 54 | 55 | .home { 56 | background-color: whitesmoke; 57 | height: 600px; 58 | display: flex; 59 | justify-content: center; 60 | align-items: center; 61 | } 62 | 63 | .home .main-sec { 64 | display: flex; 65 | column-gap: 50px; 66 | /* background-color: red; */ 67 | justify-content: center; 68 | align-items: center; 69 | } 70 | 71 | 72 | .home .right { 73 | width: 400px; 74 | height: 300px; 75 | margin: 78px; 76 | padding: 30px; 77 | border-bottom-left-radius: 50%; 78 | border-top-right-radius: 50%; 79 | border-top-left-radius: 100px; 80 | border-bottom-right-radius: 100px; 81 | display: flex; 82 | justify-content: center; 83 | flex-direction: column; 84 | align-items: center; 85 | background-image: linear-gradient(155deg, #a7ceff, #bfc9cb); 86 | } 87 | 88 | 89 | .home .left { 90 | padding: 30px; 91 | height: 500px; 92 | display: flex; 93 | justify-content: center; 94 | /* align-items: center; */ 95 | row-gap: 20px; 96 | flex-direction: column; 97 | width: 552px; 98 | /* background-color: green; */ 99 | } 100 | 101 | .home .left .btn input { 102 | padding: 10px 30px; 103 | border: none; 104 | border-radius: 10px; 105 | cursor: pointer; 106 | background-color: #0043ff8c; 107 | } 108 | 109 | .home .main-sec .left .txt1 { 110 | font-size: 4rem; 111 | font-weight: 700; 112 | } 113 | 114 | .home .right img { 115 | width: 50vw; 116 | filter: drop-shadow(20px 50px 25px #b3e3e3); 117 | } 118 | 119 | .loc-sec { 120 | height: 130px; 121 | /* background-color: red; */ 122 | display: flex; 123 | justify-content: center; 124 | /* align-items: center; */ 125 | } 126 | 127 | .loc-sec .main-sec { 128 | background-color: white; 129 | display: flex; 130 | column-gap: 20px; 131 | border-radius: 10px; 132 | height: 160px; 133 | justify-content: center; 134 | align-items: center; 135 | box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; 136 | margin-top: -70px; 137 | } 138 | 139 | .loc-sec .main-sec .pick { 140 | padding: 30px; 141 | display: flex; 142 | flex-direction: column; 143 | row-gap: 20px; 144 | } 145 | 146 | .loc-sec .main-sec .pick label { 147 | color: black; 148 | font-weight: 700; 149 | } 150 | 151 | .loc-sec .main-sec .pick p { 152 | border: 1px solid darkgrey; 153 | padding: 6px 20px; 154 | border-radius: 10px; 155 | } 156 | 157 | .loc-sec .main-sec .pick input { 158 | padding: 10px 30px; 159 | border: none; 160 | border-radius: 10px; 161 | cursor: pointer; 162 | background-color: #0043ff8c; 163 | } 164 | 165 | .car-sec { 166 | height: 192vh; 167 | padding: 30px; 168 | /* justify-content: center; */ 169 | flex-direction: column; 170 | display: flex; 171 | } 172 | 173 | .car-sec .btn input { 174 | padding: 10px 25px; 175 | border: 1px solid darkgray; 176 | border-radius: 30px; 177 | cursor: pointer; 178 | margin-top: 20px; 179 | } 180 | 181 | .car-sec .main-sec { 182 | display: flex; 183 | justify-content: center; 184 | align-items: center; 185 | margin-top: 30px; 186 | column-gap: 10px; 187 | flex-wrap: wrap; 188 | row-gap: 10px; 189 | } 190 | 191 | .car-sec .main-sec .box { 192 | /* background: red; */ 193 | overflow: hidden; 194 | width: 365px; 195 | padding: 20px; 196 | justify-content: center; 197 | display: flex; 198 | flex-direction: column; 199 | border-radius: 10px; 200 | border: 1px solid darkgray; 201 | } 202 | 203 | .car-sec .main-sec .box .details { 204 | display: flex; 205 | flex-direction: column; 206 | padding-top: 20px; 207 | row-gap: 15px; 208 | } 209 | 210 | .car-sec .main-sec .box .details .car-name { 211 | font-size: 23px; 212 | font-weight: 700; 213 | } 214 | 215 | .car-sec .main-sec .box .review { 216 | display: flex; 217 | column-gap: 5px; 218 | } 219 | 220 | .car-sec .main-sec .box .review i { 221 | color: orange; 222 | } 223 | 224 | .car-sec .main-sec .box .review p { 225 | color: darkgray; 226 | } 227 | 228 | .car-sec .main-sec .box .feature { 229 | display: flex; 230 | flex-wrap: wrap; 231 | column-gap: 70px; 232 | row-gap: 20px; 233 | } 234 | 235 | .car-sec .main-sec .box .feature p i { 236 | color: #0043ff8c; 237 | font-size: 20px; 238 | } 239 | 240 | .car-sec .main-sec .box .price { 241 | display: flex; 242 | border-top: 1px solid darkgray; 243 | column-gap: 167px; 244 | padding-top: 20px; 245 | align-items: center; 246 | } 247 | 248 | .car-sec .main-sec .box .price p { 249 | font-size: 20px; 250 | font-weight: 700; 251 | } 252 | 253 | .car-sec .main-sec .box .price button { 254 | border: none; 255 | border-radius: 10px; 256 | cursor: pointer; 257 | background-color: #0043ff8c; 258 | height: 35px; 259 | width: 100px; 260 | } 261 | 262 | .car-sec .txt { 263 | display: flex; 264 | flex-direction: column; 265 | align-items: center; 266 | row-gap: 10px; 267 | } 268 | 269 | .car-sec .txt .txt1 { 270 | font-size: 3rem; 271 | font-weight: 700; 272 | } 273 | 274 | .car-sec .txt .txt1 span { 275 | color: #0043ff8c; 276 | } 277 | 278 | .support-sec { 279 | height: 390px; 280 | padding: 30px; 281 | /* justify-content: center; */ 282 | flex-direction: column; 283 | display: flex; 284 | background-color: whitesmoke; 285 | } 286 | 287 | .support-sec .txt { 288 | display: flex; 289 | flex-direction: column; 290 | align-items: center; 291 | row-gap: 10px; 292 | } 293 | 294 | .support-sec .txt .txt1 { 295 | font-size: 3rem; 296 | font-weight: 700; 297 | } 298 | 299 | .support-sec .txt .txt1 span { 300 | color: #0043ff8c; 301 | } 302 | 303 | .support-sec .main-sec { 304 | display: flex; 305 | justify-content: center; 306 | align-items: center; 307 | margin-top: 30px; 308 | column-gap: 10px; 309 | flex-wrap: wrap; 310 | row-gap: 10px; 311 | } 312 | 313 | .support-sec .main-sec .box { 314 | /* background: red; */ 315 | padding: 20px; 316 | width: 575px; 317 | display: flex; 318 | column-gap: 36px; 319 | /* flex-direction: column; */ 320 | row-gap: 20px; 321 | } 322 | 323 | .support-sec .main-sec .box i { 324 | font-size: 30px; 325 | background: #0043ff8c; 326 | width: fit-content; 327 | padding: 34px; 328 | border-radius: 15px; 329 | } 330 | 331 | .support-sec .main-sec .box .txt-sec { 332 | display: flex; 333 | flex-direction: column; 334 | row-gap: 10px; 335 | } 336 | 337 | .support-sec .main-sec .box .txt-sec .txt1 { 338 | font-size: 30px; 339 | font-weight: 700; 340 | } 341 | 342 | .achie-sec { 343 | height: 390px; 344 | padding: 30px; 345 | justify-content: center; 346 | flex-direction: column; 347 | display: flex; 348 | background-color: white; 349 | } 350 | 351 | .achie-sec .txt { 352 | display: flex; 353 | flex-direction: column; 354 | align-items: center; 355 | row-gap: 10px; 356 | } 357 | 358 | .achie-sec .txt .txt1 { 359 | font-size: 3rem; 360 | font-weight: 700; 361 | } 362 | 363 | .achie-sec .txt .txt1 span { 364 | color: #0043ff8c; 365 | } 366 | 367 | .achie-sec .main-sec .box { 368 | background-color: white; 369 | width: 300px; 370 | height: 180px; 371 | display: flex; 372 | flex-direction: column; 373 | box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; 374 | justify-content: center; 375 | align-items: center; 376 | row-gap: 20px; 377 | border-radius: 10px; 378 | } 379 | 380 | .achie-sec .main-sec .box .txt1 { 381 | font-size: 3rem; 382 | font-weight: 700; 383 | } 384 | 385 | .achie-sec .main-sec { 386 | display: flex; 387 | justify-content: center; 388 | align-items: center; 389 | margin-top: 30px; 390 | column-gap: 10px; 391 | flex-wrap: wrap; 392 | row-gap: 10px; 393 | } 394 | 395 | .start-sec { 396 | height: 390px; 397 | padding: 30px; 398 | justify-content: center; 399 | flex-direction: column; 400 | display: flex; 401 | background-color: white; 402 | } 403 | 404 | .start-sec .main-sec { 405 | display: flex; 406 | justify-content: center; 407 | align-items: center; 408 | background-image: linear-gradient(45deg, #17c5be, #1c243a); 409 | border-radius: 10px; 410 | padding: 30px; 411 | column-gap: 50px; 412 | } 413 | 414 | .start-sec .main-sec .left { 415 | /* background: greenyellow; */ 416 | padding: 20px; 417 | height: 300px; 418 | width: 500px; 419 | display: flex; 420 | flex-direction: column; 421 | justify-content: center; 422 | row-gap: 20px; 423 | } 424 | 425 | .start-sec .main-sec .left .txt1 { 426 | font-size: 3rem; 427 | font-weight: 700; 428 | } 429 | 430 | .start-sec .main-sec .left .btn button { 431 | padding: 10px 30px; 432 | border: none; 433 | background-color: white; 434 | cursor: pointer; 435 | border-radius: 10px; 436 | } 437 | 438 | .start-sec .main-sec .right { 439 | /* background: rgb(47, 144, 255); */ 440 | padding: 20px; 441 | height: 300px; 442 | display: flex; 443 | flex-direction: column; 444 | justify-content: center; 445 | row-gap: 20px; 446 | width: 300px; 447 | align-items: center; 448 | 449 | /* width: 400px; 450 | height: 300px; 451 | margin: 78px; 452 | padding: 30px; */ 453 | border-bottom-left-radius: 50%; 454 | border-top-right-radius: 50%; 455 | border-top-left-radius: 100px; 456 | border-bottom-right-radius: 100px; 457 | /* display: flex; 458 | justify-content: center; 459 | flex-direction: column; 460 | align-items: center; */ 461 | background-image: linear-gradient(155deg, #a7ceff, #bfc9cb); 462 | } 463 | 464 | .start-sec .main-sec .right img { 465 | width: 50vw; 466 | filter: drop-shadow(20px 50px 25px #b3e3e3); 467 | } 468 | 469 | .foot-sec{ 470 | display: flex; 471 | align-items: center; 472 | justify-content: space-between; 473 | padding: 10px 50px; 474 | background: whitesmoke; 475 | } 476 | 477 | .foot-sec .item{ 478 | display: flex; 479 | column-gap: 20px; 480 | } 481 | 482 | .foot-sec .item a{ 483 | text-decoration: none; 484 | color: black; 485 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |Easy And Fast Way To Rent Your Car
38 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore accusamus nobis similique ab 39 | praesentium itaque dolore quidem debitis distinctio laborum!
40 |
47 | Mumbai,India
56 |Surat,India
61 |14-02-2024
66 | 67 |16-02-2024
72 |Latest Inventory
83 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, ipsa!
84 |Lamborghini Super Car
94 | 95 |( 10k Reviews )
102 |6 Seat
106 |6 Seat
107 |6 Seat
108 |6 Seat
109 |6 Seat
110 |6 Seat
111 |3.22 Crore
115 | 116 |Lamborghini Super Car
127 | 128 |( 10k Reviews )
135 |6 Seat
139 |6 Seat
140 |6 Seat
141 |6 Seat
142 |6 Seat
143 |6 Seat
144 |3.22 Crore
148 | 149 |Lamborghini Super Car
160 | 161 |( 10k Reviews )
168 |6 Seat
172 |6 Seat
173 |6 Seat
174 |6 Seat
175 |6 Seat
176 |6 Seat
177 |3.22 Crore
181 | 182 |Lamborghini Super Car
193 | 194 |( 10k Reviews )
201 |6 Seat
205 |6 Seat
206 |6 Seat
207 |6 Seat
208 |6 Seat
209 |6 Seat
210 |3.22 Crore
214 | 215 |Lamborghini Super Car
226 | 227 |( 10k Reviews )
234 |6 Seat
238 |6 Seat
239 |6 Seat
240 |6 Seat
241 |6 Seat
242 |6 Seat
243 |3.22 Crore
247 | 248 |Lamborghini Super Car
259 | 260 |( 10k Reviews )
267 |6 Seat
271 |6 Seat
272 |6 Seat
273 |6 Seat
274 |6 Seat
275 |6 Seat
276 |3.22 Crore
280 | 281 |Why Choose Us
293 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. At, cupiditate!
294 |24 Hour Support
301 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore doloremque sequi animi ab 302 | corporis, necessitatibus eum cum vel rerum nisi.
303 |Best Price
310 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore doloremque sequi animi ab 311 | corporis, necessitatibus eum cum vel rerum nisi.
312 |Verified License
319 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore doloremque sequi animi ab 320 | corporis, necessitatibus eum cum vel rerum nisi.
321 |Free Cancelation
328 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore doloremque sequi animi ab 329 | corporis, necessitatibus eum cum vel rerum nisi.
330 |Our Achievement
338 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Rerum, provident.
339 |4000+
344 |Active Member
345 |3000+
349 |Car Color
350 |6000+
354 |Car Model
355 |10k
359 |Positive Rating
360 |Ready To Get Start?
368 |Lorem ipsum dolor sit amet consectetur, adipisicing elit. Necessitatibus ipsa eos neque quo consectetur totam perferendis aut quos sequi expedita.
369 |
376 |