HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/forbes/contact-form/img/
Upload File :
Current File : /home/islapiiu/sites/forbes/contact-form/img/service.php.tar
home/islapiiu/sites/forbes/control-panel/post-and-get/service.php000064400000007603150765711170021172 0ustar00<?php

include_once(dirname(__FILE__) . '/../../class/include.php');

if (isset($_POST['create'])) {

    $SERVICE = new Service(NULL);
    $VALID = new Validator();

    $SERVICE->title = mysql_real_escape_string($_POST['title']);
    $SERVICE->short_description = mysql_real_escape_string($_POST['short_description']);
    $SERVICE->description = mysql_real_escape_string($_POST['description']);

    $dir_dest = '../../upload/service/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_ext = 'jpg';
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = Helper::randamId();
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SERVICE->image_name = $imgName;

    $VALID->check($SERVICE, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $SERVICE->create();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your data was saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header("location: ../view-service-photos.php?id=" . $SERVICE->id);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
//    $result = $SERVICE->create();
//      if ($result) {
//        header("location: ../create-service.php?id=" . $SERVICE->id."&&message=10");
//    } else {
//        
//    }
}

if (isset($_POST['update'])) {
    $dir_dest = '../../upload/service/';

    $handle = new Upload($_FILES['image']);

    $imgName = null;

    if ($handle->uploaded) {
        $handle->image_resize = true;
        $handle->file_new_name_body = TRUE;
        $handle->file_overwrite = TRUE;
        $handle->file_new_name_ext = FALSE;
        $handle->image_ratio_crop = 'C';
        $handle->file_new_name_body = $_POST ["oldImageName"];
        $handle->image_x = 900;
        $handle->image_y = 500;

        $handle->Process($dir_dest);

        if ($handle->processed) {
            $info = getimagesize($handle->file_dst_pathname);
            $imgName = $handle->file_dst_name;
        }
    }

    $SERVICE = new Service($_POST['id']);

    $SERVICE->image_name = $_POST['oldImageName'];
    $SERVICE->title = mysql_real_escape_string($_POST['title']);
    $SERVICE->short_description = mysql_real_escape_string($_POST['short_description']);
    $SERVICE->description = mysql_real_escape_string($_POST['description']);

    $VALID = new Validator();

    $VALID->check($SERVICE, [
        'title' => ['required' => TRUE],
        'short_description' => ['required' => TRUE],
        'description' => ['required' => TRUE],
        'image_name' => ['required' => TRUE],
    ]);


    if ($VALID->passed()) {
        $SERVICE->update();

        if (!isset($_SESSION)) {
            session_start();
        }
        $VALID->addError("Your changes saved successfully", 'success');
        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    } else {

        if (!isset($_SESSION)) {
            session_start();
        }

        $_SESSION['ERRORS'] = $VALID->errors();

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}

if (isset($_POST['save-data'])) {

    foreach ($_POST['sort'] as $key => $img) {
        $key = $key + 1;

        $SERVICE = Service::arrange($key, $img);

        header('Location: ' . $_SERVER['HTTP_REFERER']);
    }
}home/islapiiu/sites/lasatour/service.php000064400000017551150766540340014470 0ustar00<!DOCTYPE html>
<?php
include './class/include.php';
$SERVICE = new Service(NULL);
?>
<html lang="en">

    <head>
        <!-- META -->
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="description" content="Sri Lanka Lasa Tours is Reputable and trustworthy holiday partner in Sri Lanka. You can plan your dream vacation the way you want it to be with our Lasa Tours package options. Our chauffeurs are specialist in Russian languages.">
        <meta name="keywords" content="<?php echo $SERVICE->title;?>, sri lanka round tours, one day tours, tour arrangement, sri lanka lasa tours, lasa tours tour packages, about sri lanka lasa tours, best tour guide in sri lanka,  ">
        <meta name="author" content="Synotec Holdings">
        <!-- PAGE TITLE -->
        <title>Service | Sri Lanka Lasa Tours</title>
        <!-- BOOTSTRAP CSS -->
        <link rel="stylesheet" href="assets/css/bootstrap.css">
        <!-- ALL GOOGLE FONTS -->
        <link href="https://fonts.googleapis.com/css?family=Rubik:300,500,900" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
        <!-- FONT AWESOME CSS -->
        <link rel="stylesheet" href="assets/fonts/line-awesome-font-awesome.min.css">
        <!-- OWL CAROSEL CSS -->
        <link rel="stylesheet" href="assets/owlcarousel/css/owl.carousel.css">
        <link rel="stylesheet" href="assets/owlcarousel/css/owl.theme.css">
        <link rel="stylesheet" href="assets/css/owl.carousel.min.css">
        <!-- MAGNIFIC CSS -->
        <link rel="stylesheet" href="assets/css/magnific-popup.css">
        <!-- ANIMATE CSS -->
        <link rel="stylesheet" href="assets/css/animate.min.css">
        <!-- hover -->
        <link rel="stylesheet" href="assets/css/bootstrap-dropdownhover.css">
        <!-- MAIN STYLE CSS -->
        <link rel="stylesheet" href="assets/css/venobox.css" type="text/css" media="screen" />
        <link rel="stylesheet" href="assets/css/style.css">
        <link href="assets/css/custom.css" rel="stylesheet" type="text/css"/>

        <!-- color STYLE CSS -->
        <link rel="stylesheet" href="assets/css/color-switcher.css">
        <!-- RESPONSIVE CSS -->
        <link rel="stylesheet" href="assets/css/responsive.css">
        <link rel="stylesheet" type="text/css" href="assets/css/media-queries.css">
        <link href="slider/font-awesome.min.css" rel="stylesheet" type="text/css"/>
    </head>

    <body>

        <!-- START HEADER AREA -->
        <?php
        include 'header.php';
        ?>
        <!-- / END HEADER AREA -->

        <!-- Start banner -->
        <div class="inner-page-header">
            <img src="assets/images/bg/aboutbg.jpg" alt="Inner Page Header" class="full-width">
            <div class="title-breadcrumb">
                <div class="container"> 
                    <div class="site-page-breadcrumb">
                        <span>
                            <a style="" href="index.php">Home </a> 
                            <i class="fa fa-angle-double-right"></i>Service
                        </span>
                    </div>
                </div>
            </div>
        </div>
        <!-- End banner -->

        <section id="cruise" class="cruise-area section-padding">
            <div class="container">
                <div class="row">
                    <?php
                    $SERVICE = new Service(NULL);
                    foreach ($SERVICE->all() as $service) {
                        ?>
                        <div class="col-md-12">
                            <div class="cruises-info cruise-list-view">
                                <div class="row">
                                    <div class="col-md-4 padding-left-0">
                                        <img alt="<?php echo $service['title'] ?>" src="upload/service/thumb/<?php echo $service['image_name'] ?>">
                                    </div>
                                    <div class="col-md-8">
                                        <div class="cruise-details"> 
                                            <h4 class="cruise-title"><?php echo $service['title'] ?></h4> 
                                            <div class="cruise-content"> <?php echo $service['short_description'] ?></div>

                                        </div>
                                    </div>
                                </div>
                            </div> 
                        </div>
                    <?php } ?>
                </div>
            </div>
        </section>
        <!-- START SERVICE DESIGN AREA -->
        <?php
        include 'footer.php';
        ?>
        <!-- / END CONTACT DETAILS DESIGN AREA -->
        <!-- START SCROOL UP DESIGN AREA -->
        <div class="scroll-to-up">
            <div class="scrollup">
                <span class="fa fa-chevron-up"></span>
            </div>
        </div>
        <!-- / END SCROOL UP DESIGN AREA -->
        <!-- LATEST JQUERY -->
        <script src="assets/js/jquery.min.js"></script>
        <!-- BOOTSTRAP JS -->
        <script src="assets/js/bootstrap.min.js"></script>
        <!-- OWL CAROUSEL JS  -->
        <script src="assets/owlcarousel/js/owl.carousel.mini.js"></script>
        <!-- MAGNIFICANT JS -->
        <script src="assets/js/jquery.magnific-popup.min.js"></script>
        <!-- STEALLER JS -->
        <script src="assets/js/jquery.stellar.min.js"></script>
        <!-- MAGNIFICANT JS -->
        <script src="assets/js/isotope.min.js"></script>
        <!--Image Loded JS-->
        <script src="assets/js/images-loded.min.js"></script>
        <!--Image Loded JS-->
        <script src="assets/js/bootstrap-dropdownhover.js"></script>
        <!-- WOW JS -->
        <script src="assets/js/wow.min.js"></script>
        <!-- CONTCAT FORM JS -->
        <script src="assets/js/form-contact.js"></script>
        <script src="assets/js/venobox.min.js"></script>
        <!-- scripts js -->
        <script src="assets/js/scripts.js"></script> 
        <script type="text/javascript">
            function googleTranslateElementInit() {
                new google.translate.TranslateElement({pageLanguage: 'en', autoDisplay: false}, 'google_translate_element'); //remove the layout
            }
        </script>
            <script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit" type="text/javascript"></script>


                <script type="text/javascript">
            function triggerHtmlEvent(element, eventName) {
            var event;                 if (document.createEvent) {
            event = document.createEvent('HTMLEvents');
        event.initEvent(eventName, true, true);
            element.dispatchEvent(event);
        } else {
            event = document.createEventObject();
            event.eventType = eventName;
        element.fireEvent('on' + event.eventType, event);
    }
}
<!-- Flag click handler -->
$('.translation-links a').click(function (e) {
          e.preventDefault();
                var lang = $(this).data('lang');
                $('#google_translate_element select option').each(function () {
                    if ($(this).text().indexOf(lang) > -1) {
                        $(this).parent().val($(this).val());
                        var container = document.getElementById('google_translate_element');
                        var select = container.getElementsByTagName('select')[0];
                        triggerHtmlEvent(select, 'change');
                    }
                });
            });

        </script>
    </body>

</html>home/islapiiu/sites/toursatsrilanka/service.php000064400000015036150767441060016060 0ustar00<?php
include_once(dirname(__FILE__) . '/class/include.php');
?>
<!DOCTYPE html>
<html lang="en">


    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="description" content="Always begin with us and we can better serve to you">
        <meta name="keywords" content="Tours at Sri Lanka services, services in tour at sri lanka,<?php foreach (Service::all() as $ser) {
    echo "," . $ser['title'];
} ?> ">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Services || Tours-at-srilanka</title>
        <!-- favicon -->
        <link rel="shortcut icon" href="images/logo/logo.png" type="image/x-icon">
        <link href="css/fontawesome.min.css" rel="stylesheet" type="text/css"/>
        <link href="css/flaticon.css" rel="stylesheet" type="text/css"/>
        <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
        <link href="css/owl.carousel.min.css" rel="stylesheet" type="text/css"/>
        <link href="css/lightcase.css" rel="stylesheet" type="text/css"/>
        <link href="css/style.css" rel="stylesheet" type="text/css"/>
        <link href="css/responsive.css" rel="stylesheet" type="text/css"/>
        <link href="css/custom.css" rel="stylesheet" type="text/css"/>
        <link rel="stylesheet" type="text/css" href="css-1/fullwidth.css" media="screen" />
        <link rel="stylesheet" type="text/css" href="rs-plugin/css/settings.css" media="screen" />
        <link rel="stylesheet" href="css-1/rev-settings.css" type="text/css">
        <!--<link href="fontawesome/css/all.css" rel="stylesheet" type="text/css"/>-->
        <link href="font-awesome-4.7.0/css/font-awesome.css" rel="stylesheet" type="text/css"/>
    </head>

    <body>

        <!-- preloader start -->

        <!-- preloader end -->

        <!--  header-section start  -->
<?php include './header.php'; ?>
        <!--  header-section end  -->
        <section class="single-banner about-banner">
            <div class="page-breadcums">
                <div class="container">
                    <ul class="page-list">
                        <li><a href="index.php">Home</a></li>
                        <li>Services</li>
                    </ul>
                </div>
            </div>
            <div class="banner-content-area">
                <div class="container">
                    <div class="row justify-content-center">
                        <div class="col-lg-10">
                            <div class="banner-content text-center">
                                <h1 class="banner-title">Services</h1>
                                <p class="text-center">Always begin with us and we can better serve to you</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <section class="service-area gray-bg style-two">
            <div class="container">
                <div class="row">
                    <?php
                    foreach (Service::all() as $Services) {
                        ?>
                        <div class="col-lg-4 col-md-6">
                            <div class="single-service-item-two services services-shadow"><!-- single service item -->
                                <div class="icon">
                                    <!--<i class="fa fa-rocket"></i>-->

                                    <img src="upload/service/<?php echo $Services['image_name']; ?>">
                                </div>
                                <div class="content">
                                    <h4 class="title align"><?php echo $Services['title']; ?></h4>
                                    <p><?php echo $Services['short_description']; ?></p>
                                </div>
                            </div><!-- //. single service item -->
                        </div>
                        <?php
                    }
                    ?>

                </div>
            </div>
        </section>

        <!-- footer-section start -->
<?php include './footer.php'; ?>
        <!-- footer-section end -->

        <!-- scroll-to-top start -->
        <div class="scroll-to-top">
            <span class="scroll-icon">
                <i class="fa fa-rocket" aria-hidden="true"></i>
            </span>
        </div>
        <!-- scroll-to-top end -->

        <!-- jquery js link -->
        <script src="rs-plugin/js/pluginson3step.js" type="text/javascript"></script>
        <!--<script src="js/jquery-3.3.1.min.js"></script>-->
        <!-- bootstrap js link -->
        <script src="rs-plugin/js/plugin-set.js" type="text/javascript"></script>
        <script src="js/bootstrap.bundle.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <!-- owl carousel js link -->
        <script src="js/owl.carousel.min.js"></script>
        <!-- lightcase js link -->
        <script src="js/lightcase.js"></script>
        <!-- waypoints js link -->
        <script src="js/jquery.waypoints.min.js"></script>
        <!-- countup js link -->
        <script src="js/jquery.countup.min.js"></script>
        <!-- circle-progress js link -->
        <script src="js/circle-progress.min.js"></script>
        <!-- countdown js link -->
        <script src="js/jquery.countdown.js"></script>
        <!-- goolg-map-activate js link -->
        <script src="js/goolg-map-activate.js"></script>
        <!-- main js link -->
        <script src="js/main.js"></script>
        <script src="rs-plugin/js/jquery.themepunch.tools.min.js"></script>
        <script src="rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
        <script src="rs-plugin/js/custom.js" type="text/javascript"></script>
        <script src="rs-plugin/js/on3step.js" type="text/javascript"></script>
        <script async src="https://www.jscache.com/wejs?wtype=selfserveprop&amp;uniq=649&amp;locationId=13147684&amp;lang=en_US&amp;rating=true&amp;nreviews=4&amp;writereviewlink=true&amp;popIdx=true&amp;iswide=true&amp;border=true&amp;display_version=2" data-loadtrk onload="this.loadtrk = true"></script>
        <script type="text/javascript">
            function googleTranslateElementInit() {
                new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, autoDisplay: false}, 'google_translate_element');
            }
        </script>
        <script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit" type="text/javascript"></script>

    </body>

</html>home/islapiiu/sites/royalescapestours/service.php000064400000013616150767471210016423 0ustar00<?php
include_once(dirname(__FILE__) . '/class/include.php');
?>
<!DOCTYPE HTML>
<html lang="zxx">


    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="keywords" content="royal escapes tours services, sri lanka tours, sri lanka holidays, beach tours, journey sri lanka, hill country tour, wildlife, family travel, national parks, sri lanka vacations, one day tours, round tours, travel agents in sri lanka, explore sri lanka, sri lanka">
        <meta name="description" content="We have a luxury fleet of vehicles on standby at all times to provide for transport facilities of our clients with a guaranteed service.">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Services | Travel Agent in Sri Lanka | Royal Escapes Sri Lanka Tours</title>
        <link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png" />
        <!-- Icofont CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/icofont.css" media="all" />
        <!-- Bootstrap CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" media="all" />
        <!-- jquery ui CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/jquery-ui.min.css" media="all" />
        <!-- Slicknav CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/slicknav.min.css">
        <!-- Owl carousel CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/owl.carousel.css">
        <!-- Popup CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/magnific-popup.css">
        <!-- Main style CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/style.css" media="all" />
        
        <!--[if lt IE 9]>
          <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
          <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
        <![endif]-->
        <link href="assets/css/custom.css" rel="stylesheet" type="text/css"/>
        <!-- Responsive CSS -->
        <link rel="stylesheet" type="text/css" href="assets/css/responsive.css" media="all" />
    </head>
    <body>
        <!-- Page loader -->
        <div id="preloader"></div>
        <!-- header section start -->
        <?php include './header.php'; ?>
        <!-- header section end -->

        <!-- breadcrumb area start -->
        <section class="breadcrumb-area">
            <div class="container">
                <div class="row">
                    <div class="col-lg-12">
                        <div class="breadcrumb-area-content">
                            <h2>Our Service</h2>
                            <ul>
                                <li><a href="index.php">Home</a></li>
                                <li class="active"><a href="service.php">Service</a></li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </section><!-- breadcrumb area end -->
        <!-- service section start -->
        <section class="ptb-100 ptb-100-service">
            <div class="container">
                <div class="row">
                    <div class="col-lg-12">
                        
                    </div>
                </div>
                <div class="row">
                    <?php
                    foreach (Service::all() as $Services) {
                        ?>
                        <div class="col-lg-4 col-sm-6">
                            <div class="service-box3">
                                <div class="service-box-icon">
                                    <?php echo $Services['icon']; ?>
<!--                                    <i class="icofont icofont-school-bus"></i>-->
                                </div>
                                <h4><?php echo $Services['title']; ?></h4>
                                <p><?php echo $Services['short_description']; ?></p>
                                <!--<a href="#" class="theme-btn theme-btn2">read more</a>-->
                            </div>
                        </div>

                        <?php
                    }
                    ?>
                </div>
            </div>
        </section><!-- service section end -->
        
        <!-- footer section start -->
        <?php include './footer.php'; ?>
        <!-- footer section end -->
        <a href="#" class="scrollToTop">
            <i class="icofont icofont-arrow-up"></i>
        </a>
        <!-- jquery main JS -->
        <script src="assets/js/jquery.min.js"></script>
        <!-- Bootstrap JS -->
        <script src="assets/js/bootstrap.min.js"></script>
        <!-- jquery ui JS -->
        <script src="assets/js/jquery-ui.min.js"></script>
        <!-- Slicknav JS -->
        <script src="assets/js/jquery.slicknav.min.js"></script>
        <!-- owl carousel JS -->
        <script src="assets/js/owl.carousel.min.js"></script>
        <!-- Popup JS -->
        <script src="assets/js/jquery.magnific-popup.min.js"></script>
        <!-- Counterup JS -->
        <script src="assets/js/jquery.counterup.min.js"></script>
        <!-- Counterup waypoints JS -->
        <script src="assets/js/waypoints.min.js"></script>
        <!-- Isotope JS -->
        <script src="assets/js/isotope.pkgd.min.js"></script>
        <!-- YTPlayer JS -->
        <script src="assets/js/jquery.mb.YTPlayer.min.js"></script>
        <!-- jQuery Easing JS -->
        <script src="assets/js/jquery.easing.1.3.js"></script>
        <!-- main JS -->
        <script src="assets/js/main.js"></script>
        <script async src="https://www.jscache.com/wejs?wtype=cdswritereviewlg&amp;uniq=587&amp;locationId=17594820&amp;lang=en_AU&amp;lang=en_AU&amp;display_version=2" data-loadtrk onload="this.loadtrk=true"></script>
    </body>


</html>

home/islapiiu/sites/mirissa-whales/service.php000064400000027072150767745170015576 0ustar00<!DOCTYPE html>
<html lang="en-US">


    <head>
        <title>Whales Watching in Mirissa | Our Journey</title>
        <meta name="keywords" content="whales in mirissa, whale watching sri lanka, whale watching in mirissa, whale watching places, mirissa whale watching, whale watching company mirissa, whale watching boats, best whale watching company in mirissa, mirissa whales, mirissa whales tripadvisor, facilities, whale watching mirissa price, whale watching mirissa private boat, whale watching mirissa tours, whale watching mirissa sri lanka, offers in mirissa whales, charges in mirissa whales, what we do in mirissa whale watching, " />
        <meta name="description" content="Explore our full range of things to do in Sri Lanka ,Mirissa is one of the world's best destinations  for  whales watching." />

        <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <link rel="icon" type="image/png" href="images/icon.png">
        <!--Fonts-->
        <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet" type="text/css">
        <link href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i" rel="stylesheet" type="text/css">
        <link href="http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic" rel="stylesheet" type="text/css">
        <!--Bootstrap-->
        <link href="css/bootstrap.css" rel="stylesheet" type="text/css">
        <!--font Awesome-->
        <link href="css/font-awesome.css" rel="stylesheet" type="text/css">
        <!--slider-->
        <link href="css/owl.carousel.min.css" rel="stylesheet" type="text/css">
        <link href="css/animate.css" rel="stylesheet" type="text/css">
        <!--PrettyPhoto-->
        <link href="css/prettyPhoto.css" rel="stylesheet" type="text/css">
        <!--main file-->
        <link href="css/style.css" rel="stylesheet" type="text/css">
        <!--Responsive file-->
        <link href="css/responsive.css" rel="stylesheet" type="text/css">
        <link href="css/lightbox.css" rel="stylesheet" type="text/css"/>
    </head>

    <body>
        <div class="page-wrapper">

            <!-- Preloader -->
            <?php include './header.php'; ?>
        </div>
        <!--End Header-->

        <!--Start Page Title-->
        <div class="page_title bg3">
            <div class="layer">
                <div class="container">
                    <div class="row">
                        <div class="col-sm-12 col-md-12">
                            <h1>Our Journey</h1>
                            <div class="beadcrumb">
                                <a href="index.php">Home</a> <i class="fa fa-angle-right"></i> <span>Our Journey</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="blog_wrap">
            <div class="container">
                <div class="row">
                    <!--Start Articles-->
                    <div class="services_details">
                        <div class="container">
                            <div class="row">
                                <!--                                <div class="col-sm-3 col-md-3">
                                                                    <aside>
                                                                        <div class="side_widget animated slide">
                                                                            <h5 class="heading_c">Our <span>Facilities </span></h5>
                                                                            <ul>
                                                                                <li><a href="#">Tea & Coffee with Fresh Milk</a></li>
                                                                                <li><a href="#">Break First</a></li>
                                                                                <li><a href="#">Fruit</a></li>
                                                                                <li><a href="#">Cool Drink</a></li>
                                                                                <li><a href="#">Cool Towel</a></li>
                                                                                <li><a href="#">Water Bottle</a></li>
                                                                                <li><a href="#">Life Jacket</a></li>
                                                                                <li><a href="#">Life Guard</a></li>
                                                                                <li><a href="#">Full Insurance</a></li>
                                                                                <li><a href="#">Kitchen</a></li>
                                                                                <li><a href="#">Wash Room</a></li>
                                                                                <li><a href="#">First Aid</a></li>
                                                                                <li><a href="#">Fire Tank</a></li>
                                                                                <li><a href="#">Free Wi-Fi</a></li>
                                                                            </ul>
                                                                        </div>
                                                                    </aside>
                                                                </div>-->
                                <div class="col-sm-12 col-md-12">
                                    <div class="right_detail">

                                        <h3>What We <span>Do?</span></h3>
                                        <blockquote>
                                            <p>Watching whales and dolphin around south coast of sri lanka from mirissa. Be sure it is wonderful and memorable experience in your life.</p>
                                        </blockquote>

                                        <h3>What We <span>Do Not?</span></h3>
                                        <blockquote>
                                            <p>We do not journey to snorkeling and diving with whales. In addition to we not provide you to fishing activity. We must do not harm to whales and dolphins. You cannot take pictures with dolphin.</p>
                                        </blockquote>

                                        <h3>When<span></span> & Where</h3>
                                        <blockquote>
                                            <p>Whales and dolphin watching starts in November and until end of April. We start our journey at 7.00 am in Mirissa Harbour. Actually we cannot exactly time period for our journey. We have to go until find whales and dolphins.
                                                May be This journey take  3-5 hours.  Please be noticed this not actual time period. 
                                            </p>
                                        </blockquote>

                                        <h3>What We <span>Offer?</span></h3>
                                        <blockquote>
                                            <div class="side_widget animated slide">
                                                <h5 class="heading_c">Our <span>Facilities </span></h5>
                                                <ul>
                                                    <li><a href="#">Tea & Coffee with Fresh Milk</a></li>
                                                    <li><a href="#">Break First</a></li>
                                                    <li><a href="#">Fruit</a></li>
                                                    <li><a href="#">Cool Drink</a></li>
                                                    <li><a href="#">Cool Towel</a></li>
                                                    <li><a href="#">Water Bottle</a></li>
                                                    <li><a href="#">Life Jacket</a></li>
                                                    <li><a href="#">Life Guard</a></li>
                                                    <li><a href="#">Full Insurance</a></li>
                                                    <li><a href="#">Kitchen</a></li>
                                                    <li><a href="#">Wash Room</a></li>
                                                    <li><a href="#">First Aid</a></li>
                                                    <li><a href="#">Fire Tank</a></li>
                                                    <li><a href="#">Free Wi-Fi</a></li>
                                                </ul>
                                            </div>
                                        </blockquote>
                                        <h3>How We <span>Charge? </span></h3>
                                        <blockquote>
                                            <p>Kindly inform our value customers, our package rates include by insurance + government tax. We accepted Sri Lankan Rupees, Euro and US-Dollar.
                                            </p>
                                        </blockquote>
                                        <h3>How You  <span>Book? </span></h3>
                                        <blockquote>
                                            <p>Please use our booking form to make a bookings. Book directly by us to avoid additional commissions of hotels and travel agencies!

                                                Use our reservation form or call us 1-2 days before your required date on our phone  +94 77 720 8802  |  +94 71 659 8877
                                                Or use our email address <a href="mailto:[email protected]"><strong>[email protected]</strong></a> 

                                            </p>
                                        </blockquote>

                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <!--End Articles-->
                    <!--Start Sidebar-->

                    <!--End Sidebar-->
                </div>
            </div>
        </div>

        <?php include './footer.php'; ?>
        <a href="#0" class="cd-top"><i class="fa fa-angle-up" aria-hidden="true"></i></a>
        <!-- jQuery -->
        <script  src="js/jquery.js"></script>
        <!-- Bootstrap -->
        <script  src="js/bootstrap.min.js"></script>
        <!-- Jquery Ui -->
        <script  src="js/jquery-ui.js"></script>
        <!-- Slider -->
        <script  src="js/owl.carousel.js"></script>
        <!-- Isotope -->
        <script src="js/isotope-docs.min.js"></script>
        <!-- PrettyPhoto -->
        <script src="js/jquery.prettyPhoto.js"></script>
        <!-- Parallax -->
        <script  src="js/jquery.parallax.js"></script>
        <!-- Slider -->
        <script  src="js/jquery.cycle.all.js"></script>
        <!-- Appear -->
        <script  src="js/jquery.appear.js"></script>
        <!-- Custom -->
        <script  src="js/custom.js"></script>
        <script src="js/lightbox.js" type="text/javascript"></script>
    </body>


</html>