hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
envirocare.ind.in
/
Upload FileeE
HOME
<?php ob_start(); include("configuration/function-include.php"); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Envirocare | Services & Product</title> <!-- Stylesheets --> <link href="css/bootstrap.css" rel="stylesheet"> <link href="css/style.css" rel="stylesheet"> <!--Favicon--> <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"> <link rel="icon" href="images/favicon.ico" type="image/x-icon"> <!-- Responsive --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <link href="css/responsive.css" rel="stylesheet"> <!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]--> <!--[if lt IE 9]><script src="js/respond.js"></script><![endif]--> <style> .services-section .services-block-two img{ height:200px; } .services-block-two .inner-box h3 { font-size: 16px; } </style> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-44W0CRCV51"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-44W0CRCV51'); </script> </head> <body> <div class="page-wrapper"> <!-- Preloader --> <div class="preloader"></div> <!-- Main Header / Header Style Two--> <?php include('header.php'); ?> <!--End Main Header --> <!--Page Title--> <section class="page-title" style="background-image:url(images/background/5.jpg);"> <div class="auto-container"> <div class="inner-box"> <h1>Services & Product</h1> <ul class="bread-crumb"> <li><a href="index.php">Home</a></li> <li>Services & Product</li> </ul> </div> </div> </section> <!--End Page Title--> <!--Services Section--> <section class="services-section style-two " id="service"> <div class="auto-container"> <!--Sec Title--> <div class="sec-title centered"> <h2>Services</h2> </div> <div class="row clearfix"> <!--Services Block Two--> <?php $sql_services="select * from sh_services where status='1' order by displayorder asc "; $query_services=mysqli_query($conn,$sql_services); while($row_services=mysqli_fetch_array($query_services)){ ?> <div class="services-block-two col-md-4 col-sm-6 col-xs-12"> <div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms"> <div class="icon-box"> <span class="icon"><img src="upload/services/<?php echo $row_services['img'] ?>" alt="<?php echo $row_services['title'] ?>" /></span> </div> <h3><?php echo $row_services['title'] ?></h3> <div class="overlay-box"> <div class="overlay-inner"> <div class="content"> <h4><a href="#"><?php echo $row_services['title'] ?></a></h4> <div class="text"><?php echo $row_services['details'] ?></div> </div> </div> </div> </div> </div> <?php } ?> </div> </div> </section> <!--End Services Section--> <!--Services Section--> <section class="services-section style-two" id="product" > <div class="auto-container"> <!--Sec Title--> <div class="sec-title centered"> <h2>Products</h2> </div> <div class="row clearfix"> <!--Services Block Two--> <?php $sql_products="select * from sh_products where status='1' order by displayorder asc "; $query_products=mysqli_query($conn,$sql_products); while($row_products=mysqli_fetch_array($query_products)){ ?> <div class="services-block-two col-md-4 col-sm-6 col-xs-12"> <div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms"> <div class="icon-box"> <span class="icon"><img src="upload/products/<?php echo $row_products['img'] ?>" alt="<?php echo $row_products['title'] ?>" /></span> </div> <h3><?php echo $row_products['title'] ?></h3> <div class="overlay-box"> <div class="overlay-inner"> <div class="content"> <h4><a href="#"><?php echo $row_products['title'] ?></a></h4> <div class="text"><?php echo $row_products['details'] ?></div> </div> </div> </div> </div> </div> <?php } ?> </div> </div> </section> <!--End Services Section--> <!--Main Footer--> <?php include('footer.php'); ?> <!--End Footer--> </div> <!--End pagewrapper--> <!--Scroll to top--> <div class="scroll-to-top scroll-to-target" data-target=".main-header"><span class="icon fa fa-long-arrow-up"></span></div> <script src="js/jquery.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.fancybox.pack.js"></script> <script src="js/jquery.fancybox-media.js"></script> <script src="js/owl.js"></script> <script src="js/appear.js"></script> <script src="js/wow.js"></script> <script src="js/jquery-ui.js"></script> <script src="js/mixitup.js"></script> <script src="js/script.js"></script> </body> </html>