Create New Simple Website Bootstrap Multiple Cards Full Responsive


HTML Source Code

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <title>Indian Coding Wala Footer</title> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> <link href="style.css" rel="stylesheet"> </head> <body> <section id="services" class="services"> <div class="container mt-5 mb-5" data-aos="fade-up"> <div class="row gy-4"> <div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200"> <div class="service-box orange"> <i class="bi bi-1-circle icon"></i> <h3>Indian Coding Wala</h3> <p>"Indian Coding Wala Shorts" could refer to a number of things, but I'll provide a description based on what I believe you may be referring to.</p> <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a> </div> </div> <div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300"> <div class="service-box orange"> <i class="bi bi-2-circle icon"></i> <h3>Indian Coding Wala</h3> <p>"Indian Coding Wala Shorts" could refer to a number of things, but I'll provide a description based on what I believe you may be referring to.</p> <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a> </div> </div> <div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400"> <div class="service-box orange"> <i class="bi bi-3-circle icon"></i> <h3>Indian Coding Wala</h3> <p>"Indian Coding Wala Shorts" could refer to a number of things, but I'll provide a description based on what I believe you may be referring to.</p> <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a> </div> </div> <div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500"> <div class="service-box orange"> <i class="bi bi-4-circle icon"></i> <h3>Indian Coding Wala</h3> <p>"Indian Coding Wala Shorts" could refer to a number of things, but I'll provide a description based on what I believe you may be referring to.</p> <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a> </div> </div> <div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600"> <div class="service-box orange"> <i class="bi bi-5-circle icon"></i> <h3>Indian Coding Wala</h3> <p>"Indian Coding Wala Shorts" could refer to a number of things, but I'll provide a description based on what I believe you may be referring to.</p> <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a> </div> </div> <div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="700"> <div class="service-box orange"> <i class="bi bi-6-circle icon"></i> <h3>Indian Coding Wala</h3> <p>"Indian Coding Wala Shorts" could refer to a number of things, but I'll provide a description based on what I believe you may be referring to.</p> <a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a> </div> </div> </div> </div> </section><!-- End Services Section --> </body> </html>


CSS Source Code  

:root { scroll-behavior: smooth; } body { font-family: "Open Sans", sans-serif; color: #444444; } a { color: #4154f1; text-decoration: none; } a:hover { color: #717ff5; text-decoration: none; } h1, h2, h3, h4, h5, h6 { font-family: "Nunito", sans-serif; } /*-------------------------------------------------------------- # Services --------------------------------------------------------------*/ .services .service-box { box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08); height: 100%; padding: 60px 30px; text-align: center; transition: 0.3s; border-radius: 5px; } .services .service-box .icon { font-size: 36px; padding: 40px 20px; border-radius: 4px; position: relative; margin-bottom: 25px; display: inline-block; line-height: 0; transition: 0.3s; } .services .service-box h3 { color: #444444; font-weight: 700; } .services .service-box .read-more { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; padding: 8px 20px; } .services .service-box .read-more i { line-height: 0; margin-left: 5px; font-size: 18px; } .services .service-box.blue { border-bottom: 3px solid #2db6fa; } .services .service-box.blue .icon { color: #2db6fa; background: #dbf3fe; } .services .service-box.blue .read-more { color: #2db6fa; } .services .service-box.blue:hover { background: #2db6fa; } .services .service-box.orange { border-bottom: 3px solid #f68c09; } .services .service-box.orange .icon { color: #f68c09; background: #fde3c4; } .services .service-box.orange .read-more { color: #f68c09; } .services .service-box.orange:hover { background: #f68c09; } .services .service-box.green { border-bottom: 3px solid #08da4e; } .services .service-box.green .icon { color: #08da4e; background: #cffddf; } .services .service-box.green .read-more { color: #08da4e; } .services .service-box.green:hover { background: #08da4e; } .services .service-box.red { border-bottom: 3px solid #e9222c; } .services .service-box.red .icon { color: #e9222c; background: #fef7f8; } .services .service-box.red .read-more { color: #e9222c; } .services .service-box.red:hover { background: #e9222c; } .services .service-box.purple { border-bottom: 3px solid #b50edf; } .services .service-box.purple .icon { color: #b50edf; background: #f8e4fd; } .services .service-box.purple .read-more { color: #b50edf; } .services .service-box.purple:hover { background: #b50edf; } .services .service-box.pink { border-bottom: 3px solid #f51f9c; } .services .service-box.pink .icon { color: #f51f9c; background: #feecf7; } .services .service-box.pink .read-more { color: #f51f9c; } .services .service-box.pink:hover { background: #f51f9c; } .services .service-box:hover h3, .services .service-box:hover p, .services .service-box:hover .read-more { color: #fff; } .services .service-box:hover .icon { background: #fff; }