updated
This commit is contained in:
@ -61,6 +61,7 @@
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<section>
|
||||
<?php
|
||||
echo '
|
||||
<button id="back-to-top" class="back-to-top">
|
||||
@ -68,5 +69,6 @@
|
||||
</button>
|
||||
';
|
||||
?>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -6,8 +6,8 @@
|
||||
<title>Bibhuti Solutions</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../assets/css/carousels.css">
|
||||
<script src="../assets/js/carousel.js"></script>
|
||||
<link rel="stylesheet" href="./assets/css/carousels.css">
|
||||
<script src="./assets/js/carousel.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
</div>
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<img src="../assets/images/carousel-one.jpg" class="d-block w-100" alt="...">
|
||||
<img src="./assets/images/carousel-one.jpg" class="d-block w-100" alt="...">
|
||||
<div class="carousel-caption d-none d-md-block">
|
||||
<h5><span class="carouspan">We Provide</span><br>Truly Prominent IT Services</h5>
|
||||
<p>We will make sure that your company is always on high-profile and up with your competitors.</p>
|
||||
@ -31,7 +31,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="../assets/images/carousel-two.jpg" class="d-block w-100" alt="...">
|
||||
<img src="./assets/images/carousel-two.jpg" class="d-block w-100" alt="...">
|
||||
<div class="carousel-caption d-none d-md-block">
|
||||
<h5><span class="carouspan">We help</span><br> to Develop Your Businesss</h5>
|
||||
<p>We specialize in software application development, interactive website design, and many other services with creative and affordable solutions for small & medium on large business concerns.</p>
|
||||
|
@ -8,7 +8,7 @@
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../assets/css/footers.css">
|
||||
<link rel="stylesheet" href="./assets/css/footers.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<title>Bibhuti Solutions</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../assets/css/headers.css">
|
||||
<link rel="stylesheet" href="./assets/css/headers.css">
|
||||
<style>
|
||||
/* Add custom styles here if needed */
|
||||
</style>
|
||||
@ -33,7 +33,7 @@
|
||||
<nav class="custom-navbar navbar navbar-expand-lg overflow-hidden">
|
||||
<div class="container-fluid">
|
||||
<div class="logocover">
|
||||
<a class="navbar-brand" href="#"><img class="logo" src="../assets/images/main-logo.png" alt="logo"></a>
|
||||
<a class="navbar-brand" href="#"><img class="logo" src="./assets/images/main-logo.png" alt="logo"></a>
|
||||
</div>
|
||||
<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>
|
||||
@ -41,22 +41,22 @@
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="homeactive nav-link active" href="http://localhost/bibhuti_solutions/templates/#home">HOME</a>
|
||||
<a class="homeactive nav-link active" href="home.php">HOME</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="http://localhost/bibhuti_solutions/templates/#about">ABOUT</a>
|
||||
<a class="nav-link" href="#about">ABOUT</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="http://localhost/bibhuti_solutions/templates/#services">SERVICES</a>
|
||||
<a class="nav-link" href="#services">SERVICES</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="http://localhost/bibhuti_solutions/templates/#packages">PACKAGES</a>
|
||||
<a class="nav-link" href="#packages">PACKAGES</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="http://localhost/bibhuti_solutions/templates/#our-works">OUR WORKS</a>
|
||||
<a class="nav-link" href="#our-works">OUR WORKS</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="http://localhost/bibhuti_solutions/templates/#contact">CONTACT</a>
|
||||
<a class="nav-link" href="#contact">CONTACT</a>
|
||||
</li>
|
||||
</ul>
|
||||
<button type="button" class="quotebtn">GET A QUOTE?</button>
|
||||
|
@ -10,13 +10,14 @@
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/testimonials.css">
|
||||
<link rel="stylesheet" href="./assets/css/testimonials.css">
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<section id="testimonials">
|
||||
<div class="container testimonials-carousel">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
@ -34,7 +35,7 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="media">
|
||||
<img src="../assets/images/testimonial-one.jpeg" class="mr-3" alt="">
|
||||
<img src="./assets/images/testimonial-one.jpeg" class="mr-3" alt="">
|
||||
<div class="media-body">
|
||||
<div class="testimonial">
|
||||
<p>We have been working with Bibhuti Solutions for two years to develop a robust software application that supports the company’s daily activities. The Mindfire team is highly responsive and professional providing us with great problem solving on a daily basis. They are a tremendous extension of our team.
|
||||
@ -46,7 +47,7 @@
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="media">
|
||||
<img src="../assets/images/testimonial-two.jpg" class="mr-3" alt="">
|
||||
<img src="./assets/images/testimonial-two.jpg" class="mr-3" alt="">
|
||||
<div class="media-body">
|
||||
<div class="testimonial">
|
||||
<p>Bibhuti Solutions has been an integral partner in improving our site's user experience. Their QA testing team is responsive, fast, proactive, and flexible - overall, an absolute pleasure to work with. After just a short amount of time, we've seen significant results.</p>
|
||||
@ -61,7 +62,7 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="media">
|
||||
<img src="../assets/images/testimonial-three.jpg" class="mr-3" alt="">
|
||||
<img src="./assets/images/testimonial-three.jpg" class="mr-3" alt="">
|
||||
<div class="media-body">
|
||||
<div class="testimonial">
|
||||
<p>I have been involved in big projects for major corporations and the team at Bibhuti Solutions is the best that I have worked with. They are timely, efficient and use best practices in their development work. They move our project along quickly and keep us agile enough to be competitive. I would recommend them to anyone.
|
||||
@ -73,7 +74,7 @@
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="media">
|
||||
<img src="../assets/images/testimonial-four.jpg" class="mr-3" alt="">
|
||||
<img src="./assets/images/testimonial-four.jpg" class="mr-3" alt="">
|
||||
<div class="media-body">
|
||||
<div class="testimonial">
|
||||
<p>Bibhuti Solutions has been an integral partner in improving our site's user experience. Their QA testing team is responsive, fast, proactive, and flexible - overall, an absolute pleasure to work with. After just a short amount of time, we've seen significant results.</p>
|
||||
@ -118,6 +119,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user