<?php session_start();
include("includes/db_config.php");?>
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content=" ">
    <meta name="author" content="">
    <title>Orange Groceries</title>
    <?php include("includes/css.php");?>
</head>

<body>
    <?php include("includes/header.php");?>

    <section class="page-info section-padding border-bottom topthumb">
        <div class="container-fluid">
            <div class="row">
                  <div class="col-md-12"> 
                <a href="index.php"> <span class="mdi mdi-home"></span> &nbsp; Home</a> <span class="mdi mdi-chevron-right"></span> <a href="#">Privacy Policy</a>
            </div>
            </div>
        </div>
    </section>

    <section class="shop-list section-padding"> 
            <div class="container-fluid">
                <div class="row">
                    <div class="col-md-12">
                        <h2 class="text-uppercase pt-10">Privacy Policy</h2>
                    </div>
                </div>
                <div class="clearfix"></div>
                <div class="col-md-12"> 
                        <?php   $sql2="SELECT * from policy";
                    $exe2=mysqli_query($conn,$sql2);
                    while ($res=mysqli_fetch_array($exe2))
                    { ?>
                        <p class="text-black"><?php echo html_entity_decode($res['data']);  ?></p> <?php } ?>
                    </div>
                </div>
         </section>

        <?php include("includes/footer.php");?>
        <?php include("includes/js.php");?>

        <script>
            jQuery(function() {
                jQuery('#in1').fastLiveFilter('#f1');
            });
        </script>
</body>

</html>