(Blanked the page) |
|||
Line 1: | Line 1: | ||
+ | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
+ | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
+ | <head> | ||
+ | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
+ | <title>Untitled Document</title> | ||
+ | |||
+ | <link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'> | ||
+ | |||
+ | <!-- Latest compiled and minified CSS --> | ||
+ | <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | ||
+ | |||
+ | <!-- Optional theme --> | ||
+ | <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css"> | ||
+ | |||
+ | <!-- Latest compiled and minified CSS --> | ||
+ | <link rel="stylesheet" href="style.css"> | ||
+ | |||
+ | <link rel="stylesheet" href="css/font-awesome.min.css"> | ||
+ | |||
+ | <link rel="stylesheet/less" type="text/css" href="style.less" /> | ||
+ | |||
+ | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | ||
+ | |||
+ | <script src="js/bootstrap.min.js" type="text/javascript" ></script> | ||
+ | |||
+ | <script src="js/jquery.smint.js" type="text/javascript" ></script> | ||
+ | |||
+ | <script type="text/javascript" src="js/jquery.easing.min.js"></script> | ||
+ | <script type="text/javascript" src="js/jquery.easy-ticker.js"></script> | ||
+ | |||
+ | <script src="less.js" type="text/javascript"></script> | ||
+ | |||
+ | <script src="js/isotop.js"></script> | ||
+ | <script src="js/jquery.colorbox.js"></script> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | |||
+ | |||
+ | $('.collapse').collapse(); | ||
+ | |||
+ | |||
+ | |||
+ | $(function() { | ||
+ | $('a[href*=#]:not([href=#])').click(function() { | ||
+ | if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { | ||
+ | |||
+ | var target = $(this.hash); | ||
+ | target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | ||
+ | if (target.length) { | ||
+ | $('html,body').animate({ | ||
+ | scrollTop: target.offset().top | ||
+ | }, 1000); | ||
+ | return false; | ||
+ | } | ||
+ | } | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | $(document).ready( function() { | ||
+ | $('.subMenu').smint({ | ||
+ | 'scrollSpeed' : 1000 | ||
+ | }); | ||
+ | |||
+ | var dd = $('.vticker').easyTicker({ | ||
+ | direction: 'up', | ||
+ | easing: 'easeInOutBack', | ||
+ | speed: 'slow', | ||
+ | interval: 4000, | ||
+ | height: 'auto', | ||
+ | visible: 1, | ||
+ | mousePause: 0, | ||
+ | controls: { | ||
+ | up: '.up', | ||
+ | down: '.down', | ||
+ | toggle: '.toggle', | ||
+ | stopText: 'Stop !!!' | ||
+ | } | ||
+ | }).data('easyTicker'); | ||
+ | |||
+ | }); | ||
+ | |||
+ | $(function () { $('.tooltip-hide').tooltip('hide');}); | ||
+ | |||
+ | |||
+ | |||
+ | $(document).ready(function(){ | ||
+ | // Portfolio | ||
+ | |||
+ | |||
+ | var $container = $('.portfolioContainer'); | ||
+ | $container.isotope({ | ||
+ | filter: '*', | ||
+ | animationOptions: { | ||
+ | duration: 750, | ||
+ | easing: 'linear', | ||
+ | queue: false | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | $('.portfolioFilter a').click(function(){ | ||
+ | $('.portfolioFilter .current').removeClass('current'); | ||
+ | $(this).addClass('current'); | ||
+ | |||
+ | var selector = $(this).attr('data-filter'); | ||
+ | $container.isotope({ | ||
+ | filter: selector, | ||
+ | animationOptions: { | ||
+ | duration: 750, | ||
+ | easing: 'linear', | ||
+ | queue: false | ||
+ | } | ||
+ | }); | ||
+ | return false; | ||
+ | |||
+ | }); | ||
+ | |||
+ | $(".group2").colorbox({rel:'group2', transition:"fade"}); | ||
+ | |||
+ | }); | ||
+ | |||
+ | $('.carousel').carousel(); | ||
+ | |||
+ | </script> | ||
+ | |||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | |||
+ | <div class="wrap "> | ||
+ | <div class="section sTop"> | ||
+ | <div class="top-container"> | ||
+ | |||
+ | <div class="container"> | ||
+ | |||
+ | <div class="large-logo"> | ||
+ | <a href="#"><img src="img/logo-large.png" alt="logo" /></a> | ||
+ | </div> | ||
+ | |||
+ | <div class="vticker"> | ||
+ | <ul> | ||
+ | <li>WE ARE APEX</li> | ||
+ | <li>INVENT THE FUTURE</li> | ||
+ | <li>TOUCH TOMORROW</li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | |||
+ | <!--<a href="#sTop" class="click-down"><i class="fa fa-chevron-circle-down"></i></a>--> | ||
+ | <div class="" > | ||
+ | <ul class="nav nav-pills nav-justified"> | ||
+ | <li class="active"><a href="#sTop"><i class="fa fa-cog"></i>About</a></li> | ||
+ | <li><a href="#s1"><i class="fa fa-users"></i>Team</a></li> | ||
+ | <li><a href="#s2"><i class="fa fa-cogs"></i>Services</a></li> | ||
+ | <li><a href="#s3"><i class="fa fa-picture-o"></i>Portfolio</a></li> | ||
+ | <li><a href="#s6"><i class="fa fa-pencil-square-o"></i>Blog</a></li> | ||
+ | <li><a href="#s7"><i class="fa fa-comment"></i>Contact</a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div><!-- /top-container --> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div class="subMenu" > | ||
+ | <div class="container"> | ||
+ | <div class="row"> | ||
+ | <div class="col-md-2 th-logo"> | ||
+ | <a href="#sTop"> | ||
+ | <img src="img/logo.png" alt="logo" /> | ||
+ | </a> | ||
+ | </div> | ||
+ | <div class="col-md-10"> | ||
+ | |||
+ | <!--<nav class="navbar navbar-default" role="navigation"> | ||
+ | <div class="container-fluid"> | ||
+ | <div class="navbar-header"> | ||
+ | <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||
+ | <span class="sr-only">Toggle navigation</span> | ||
+ | <span class="icon-bar"></span> | ||
+ | <span class="icon-bar"></span> | ||
+ | <span class="icon-bar"></span> | ||
+ | </button> | ||
+ | <a class="navbar-brand" href="#">Brand</a> | ||
+ | </div> | ||
+ | |||
+ | <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
+ | <ul class="nav navbar-nav inner pull-right"> | ||
+ | <li><a href="#about" class="subNavBtn">About Us</a></li> | ||
+ | <li><a href="#s2" class="subNavBtn">Our Work</a></li> | ||
+ | <li><a href="#s3" class="subNavBtn">Services</a></li> | ||
+ | <li><a href="#s4" class="subNavBtn">Testimonials</a></li> | ||
+ | <li><a href="#s5" class="subNavBtn">Pricing</a></li> | ||
+ | <li><a href="#s6" class="subNavBtn">Blog</a></li> | ||
+ | <li><a href="#s7" class="subNavBtn">Contact</a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | </div> | ||
+ | </nav>--> | ||
+ | |||
+ | <div class="inner pull-right"> | ||
+ | <a href="#about" class="subNavBtn">About Us</a> | ||
+ | <a href="#s2" class="subNavBtn">Our Work</a> | ||
+ | <a href="#s3" class="subNavBtn">Services</a> | ||
+ | <a href="#s4" class="subNavBtn">Testimonials</a> | ||
+ | <a href="#s5" class="subNavBtn">Pricing</a> | ||
+ | <a href="#s6" class="subNavBtn">Blog</a> | ||
+ | <a href="#s7" class="subNavBtn">Contact</a> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div><!-- row --> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="section about"> | ||
+ | <div class="inner "> | ||
+ | <div class="about-artical"> | ||
+ | <h2>Creative Minds</h2> | ||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.</p> | ||
+ | |||
+ | <div class="creative-minds"> | ||
+ | <div class="row-cm"> | ||
+ | <div class="col-cm"> | ||
+ | <figure class="cm-item"> | ||
+ | <img alt="" src="img/c-1.jpg"> | ||
+ | <figcaption></figcaption> | ||
+ | </figure> | ||
+ | <h4 class="cm-title" data-animate="fadeInDown" style="">John Doe</h4> | ||
+ | <p class="cm-descr">Graphic Designer</p> | ||
+ | </div> | ||
+ | <div class="col-cm"> | ||
+ | <figure class="cm-item"> | ||
+ | <img alt="" src="img/c-2.jpg"> | ||
+ | <figcaption></figcaption> | ||
+ | </figure> | ||
+ | <h4 class="cm-title" data-animate="fadeInDown" style="">John Doe</h4> | ||
+ | <p class="cm-descr">Graphic Designer</p> | ||
+ | </div> | ||
+ | <div class="col-cm"> | ||
+ | <figure class="cm-item"> | ||
+ | <img alt="" src="img/c-3.jpg"> | ||
+ | <figcaption></figcaption> | ||
+ | </figure> | ||
+ | <h4 class="cm-title" data-animate="fadeInDown" style="">John Doe</h4> | ||
+ | <p class="cm-descr">Graphic Designer</p> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div><!-- /creative-minds --> | ||
+ | |||
+ | <div id="social-contect" class="social-contect"> | ||
+ | <a href="#" class="tooltip-hide" data-placement="top" data-toggle="tooltip" type="button" data-original-title="Facebook"><i class="fa fa-facebook"></i></a> | ||
+ | <a href="#" class="tooltip-hide" data-placement="top" data-toggle="tooltip" type="button" data-original-title="Twitter"><i class="fa fa-twitter"></i></a> | ||
+ | <a href="#" class="tooltip-hide" data-placement="top" data-toggle="tooltip" type="button" data-original-title="Dribbble"><i class="fa fa-dribbble"></i></a> | ||
+ | <a href="#" class="tooltip-hide" data-placement="top" data-toggle="tooltip" type="button" data-original-title="Linkedin"><i class="fa fa-linkedin"></i></a> | ||
+ | <a href="#" class="tooltip-hide" data-placement="top" data-toggle="tooltip" type="button" data-original-title="Google plus"><i class="fa fa-google-plus"></i></a> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div><!-- /about-artical --> | ||
+ | </div> | ||
+ | |||
+ | <div class="about-f"> | ||
+ | |||
+ | <div class="container"> | ||
+ | |||
+ | <div class="row"> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="about-us-f"> | ||
+ | <h3>About Us</h3> | ||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.</p> | ||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place.</p> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="about-us-f"> | ||
+ | <h3>Our Goals</h3> | ||
+ | |||
+ | <div class="panel-group" id="accordion"> | ||
+ | <div class="panel panel-default"> | ||
+ | <div class="panel-heading"> | ||
+ | <h4 class="panel-title"> | ||
+ | <a data-toggle="collapse" data-parent="#accordion" href=".collapseOne"> | ||
+ | IMPRESSIVE TEMPLATE | ||
+ | </a> | ||
+ | </h4> | ||
+ | </div> | ||
+ | <div id="" class="collapseOne panel-collapse collapse in"> | ||
+ | <div class="panel-body"> | ||
+ | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="panel panel-default"> | ||
+ | <div class="panel-heading"> | ||
+ | <h4 class="panel-title"> | ||
+ | <a data-toggle="collapse" data-parent="#accordion" href=".collapseTwo"> | ||
+ | TONS OF FEATURES | ||
+ | </a> | ||
+ | </h4> | ||
+ | </div> | ||
+ | <div id="" class="collapseTwo panel-collapse collapse"> | ||
+ | <div class="panel-body"> | ||
+ | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="panel panel-default"> | ||
+ | <div class="panel-heading"> | ||
+ | <h4 class="panel-title"> | ||
+ | <a data-toggle="collapse" data-parent="#accordion" href=".collapseThree"> | ||
+ | CREATIVE LAYOUT | ||
+ | </a> | ||
+ | </h4> | ||
+ | </div> | ||
+ | <div id="" class="collapseThree panel-collapse collapse"> | ||
+ | <div class="panel-body"> | ||
+ | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div><!-- /.about-us-f --> | ||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="about-us-f"> | ||
+ | <h3>Our Goals</h3> | ||
+ | |||
+ | <span class="sr-only">HTML <span class="pull-right">40%</span></span> | ||
+ | <div class="progress top100"> | ||
+ | <div class="progress-bar progress-bar-pink" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <span class="sr-only">Graphic <span class="pull-right">20%</span></span> | ||
+ | <div class="progress"> | ||
+ | <div class="progress-bar progress-bar-pink" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"> | ||
+ | </div> | ||
+ | </div> | ||
+ | <span class="sr-only">JS <span class="pull-right">60%</span></span> | ||
+ | <div class="progress"> | ||
+ | <div class="progress-bar progress-bar-pink" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div><!-- /container --> | ||
+ | |||
+ | </div><!-- /about-f --> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div class="section s2"> | ||
+ | <div class="inner"> | ||
+ | |||
+ | |||
+ | <div class="portfolioFilter"> | ||
+ | |||
+ | <a href="#" data-filter="*" class="current">All Categories</a> | ||
+ | <a href="#" data-filter=".people">People</a> | ||
+ | <a href="#" data-filter=".places">Places</a> | ||
+ | <a href="#" data-filter=".food">Food</a> | ||
+ | <a href="#" data-filter=".objects">Objects</a> | ||
+ | |||
+ | </div><!-- /portfolioFilter --> | ||
+ | |||
+ | <div class="portfolioContainer"> | ||
+ | |||
+ | <div class="objects"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <!--<a href="#" class="info">Read More</a>--> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="people places"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img2.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div class="food"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img3.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class=" people"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img4.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class=" objects"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img5.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="people places"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img6.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="food"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img7.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class=" people"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img8.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="food"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img3.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class=" people"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img4.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class=" objects"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img5.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="people places"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img6.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="hover"></div> | ||
+ | |||
+ | <div class="mask"> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p> | ||
+ | <a href="img/img1.jpg" class="info group2" title="Me and my grandfather on the Ohoopee"><i class="fa fa-search-plus"></i></a> | ||
+ | <a href="#" class="info"><i class="fa fa-arrow-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | </div><!-- /portfolioContainer --> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div class="section s3"> | ||
+ | <div class="inner"> | ||
+ | <div class="container"> | ||
+ | |||
+ | <div class="services"> | ||
+ | |||
+ | <div class="services-tops"> | ||
+ | |||
+ | <h2>Our Services</h2> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | |||
+ | </div><!-- /services-tops --> | ||
+ | |||
+ | <div class="row"> | ||
+ | |||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="services-box"> | ||
+ | <i class="fa fa-cog"></i> | ||
+ | <h6>Photography</h6> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | |||
+ | </div><!-- /services-box --> | ||
+ | </div> | ||
+ | |||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="services-box"> | ||
+ | <i class="fa fa-coffee"></i> | ||
+ | <h6>Creative Ideas</h6> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | |||
+ | </div><!-- /services-box --> | ||
+ | </div> | ||
+ | |||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="services-box"> | ||
+ | <i class="fa fa-comment-o"></i> | ||
+ | <h6>Consulting</h6> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | </div><!-- /services-box --> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div><!-- /services --> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="section s4"> | ||
+ | <div class="inner"> | ||
+ | <div class="container"> | ||
+ | |||
+ | <div class="testimonial"> | ||
+ | |||
+ | <h2>Testimonial</h2> | ||
+ | |||
+ | <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> | ||
+ | <!-- Indicators --> | ||
+ | <ol class="carousel-indicators"> | ||
+ | <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> | ||
+ | <li data-target="#carousel-example-generic" data-slide-to="1"></li> | ||
+ | <li data-target="#carousel-example-generic" data-slide-to="2"></li> | ||
+ | </ol> | ||
+ | |||
+ | <!-- Wrapper for slides --> | ||
+ | <div class="carousel-inner"> | ||
+ | <div class="item active"> | ||
+ | <div class="carousel-caption"> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="item"> | ||
+ | <div class="carousel-caption"> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="item"> | ||
+ | <div class="carousel-caption"> | ||
+ | |||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you. </p> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="transparent-bg"> | ||
+ | <div class="bcg"> | ||
+ | <div class="bcg-bg"> | ||
+ | <h1>"You only live once, but if you do it right, once is enough."</h1> | ||
+ | <h6>Mae West</h6> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div><!-- /transparent-bg --> | ||
+ | |||
+ | |||
+ | <div class="section s5" id="s5"> | ||
+ | <div class="inner"> | ||
+ | <div class="pricing"> | ||
+ | <div class="container"> | ||
+ | <div class="pricing-header"> | ||
+ | <h2>Our Pricing</h2> | ||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="row"> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="pricing-box"> | ||
+ | <div class="pricing-head"> | ||
+ | <h1 class="price">$500</h1> | ||
+ | <h4>Standard</h4> | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | Creative Idea | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>24/7</strong>TECH SUPPORT | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>5</strong>PROJECTS | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>1GB</strong>STORAGE | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | UNLIMITED USERS | ||
+ | </div> | ||
+ | <div class="pricing-row last"> | ||
+ | <a href="#" class="submit">Buy It Now</a> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="pricing-box"> | ||
+ | <div class="pricing-head business"> | ||
+ | <h1 class="price">$500</h1> | ||
+ | <h4>Standard</h4> | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | Creative Idea | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>24/7</strong>TECH SUPPORT | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>5</strong>PROJECTS | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>1GB</strong>STORAGE | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | UNLIMITED USERS | ||
+ | </div> | ||
+ | <div class="pricing-row last"> | ||
+ | <a href="#" class="submit">Buy It Now</a> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | <div class="pricing-box"> | ||
+ | <div class="pricing-head"> | ||
+ | <h1 class="price">$500</h1> | ||
+ | <h4>Standard</h4> | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | Creative Idea | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>24/7</strong>TECH SUPPORT | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>5</strong>PROJECTS | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | <strong>1GB</strong>STORAGE | ||
+ | </div> | ||
+ | <div class="pricing-row"> | ||
+ | UNLIMITED USERS | ||
+ | </div> | ||
+ | <div class="pricing-row last"> | ||
+ | <a href="#" class="submit">Buy It Now</a> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div><!-- /pricing --> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="section s6"> | ||
+ | <div class="inner"> | ||
+ | <div class="blog"> | ||
+ | |||
+ | <div class="container"> | ||
+ | |||
+ | <div class="blog-header"> | ||
+ | |||
+ | <h2>Our Blog</h2> | ||
+ | <p>We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.</p> | ||
+ | |||
+ | </div><!-- /blog-header --> | ||
+ | |||
+ | <div class="row"> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="slide"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="isotope-item-dtls"> | ||
+ | <h3>Item I</h3> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul</p> | ||
+ | |||
+ | <div class="blue-btn"> | ||
+ | <a class="first-link" href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | <a href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | </div> | ||
+ | </div><!--/isotope-item-dtls--> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="slide"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="isotope-item-dtls"> | ||
+ | <h3>Item I</h3> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul</p> | ||
+ | |||
+ | <div class="blue-btn"> | ||
+ | <a class="first-link" href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | <a href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | </div> | ||
+ | </div><!--/isotope-item-dtls--> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="slide"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="isotope-item-dtls"> | ||
+ | <h3>Item I</h3> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul </p> | ||
+ | |||
+ | |||
+ | <div class="blue-btn"> | ||
+ | <a class="first-link" href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | <a href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | </div> | ||
+ | </div><!--/isotope-item-dtls--> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="row"> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="slide"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="isotope-item-dtls"> | ||
+ | <h3>Item I</h3> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul</p> | ||
+ | |||
+ | <div class="blue-btn"> | ||
+ | <a class="first-link" href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | <a href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | </div> | ||
+ | </div><!--/isotope-item-dtls--> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="slide"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | <div class="isotope-item-dtls"> | ||
+ | <h3>Item I</h3> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul</p> | ||
+ | |||
+ | <div class="blue-btn"> | ||
+ | <a class="first-link" href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | <a href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | </div> | ||
+ | </div><!--/isotope-item-dtls--> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="slide"> | ||
+ | <div class="portfolio-img view view-first"> | ||
+ | |||
+ | <img src="img/img1.jpg" class="img-responsive" alt="Responsive image" /> | ||
+ | |||
+ | |||
+ | <div class="isotope-item-dtls"> | ||
+ | <h3>Item I</h3> | ||
+ | <p>A wonderful serenity has taken possession of my entire soul </p> | ||
+ | |||
+ | |||
+ | <div class="blue-btn"> | ||
+ | <a class="first-link" href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | <a href="blog.html"> | ||
+ | read more | ||
+ | </a> | ||
+ | </div> | ||
+ | </div><!--/isotope-item-dtls--> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | </div><!-- container --> | ||
+ | |||
+ | </div><!-- /blog --> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | <div class="section s7"> | ||
+ | <div class="inner"> | ||
+ | |||
+ | <div class="transparent-bg"> | ||
+ | <div class="bcg"> | ||
+ | <div class="bcg-bg bcg-bg-blk"> | ||
+ | |||
+ | <div class="container"> | ||
+ | |||
+ | <div class="contact"> | ||
+ | |||
+ | <h1>Contact Us</h1> | ||
+ | |||
+ | <div class="row"> | ||
+ | |||
+ | <div class="col-xs-12 col-sm-8 col-md-8 col-lg-8"> | ||
+ | |||
+ | <div class="contact-form"> | ||
+ | <form class="form-horizontal"> | ||
+ | <div class="row"> | ||
+ | <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4"> | ||
+ | <div class="form-group"> | ||
+ | <label for="exampleInputEmail1">Name</label> | ||
+ | <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4"> | ||
+ | <div class="form-group"> | ||
+ | <label for="exampleInputEmail1">Email address</label> | ||
+ | <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4"> | ||
+ | <div class="form-group"> | ||
+ | <label for="exampleInputEmail1">Subject</label> | ||
+ | <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="row"> | ||
+ | <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> | ||
+ | <div class="form-group"> | ||
+ | <label for="exampleInputEmail1">Massage</label> | ||
+ | <textarea class="form-control" rows="3"></textarea> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="control-group"> | ||
+ | <div class="controls"> | ||
+ | <button type="button" class="btn btn-default btn-lg">Send</button> | ||
+ | </div> | ||
+ | </div> | ||
+ | </form> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div class="col-xs-12 col-sm-4 col-md-4 col-lg-4"> | ||
+ | |||
+ | <div class="address"> | ||
+ | <h3>Address:</h3> | ||
+ | <i class="icons-marker icon-home"></i> | ||
+ | <div class="contact-address"> | ||
+ | B block, 1no. road <br> | ||
+ | Chandgao Abashik, <br> | ||
+ | Chittagong. | ||
+ | </div> | ||
+ | </div><!--End address--> | ||
+ | |||
+ | <div class="address"> | ||
+ | <h3>Phones:</h3> | ||
+ | <div class="phone"> | ||
+ | <i class="icon-volume-down"></i> | ||
+ | <div class="contact-address"> | ||
+ | +1 800 119 6590 | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="phone"> | ||
+ | <i class="icon-print"></i> | ||
+ | <div class="contact-address"> | ||
+ | +1 800 119 6590 | ||
+ | </div> | ||
+ | </div> | ||
+ | </div><!--End address--> | ||
+ | |||
+ | <div class="address"> | ||
+ | <h3>Email:</h3> | ||
+ | <div class="phone"> | ||
+ | <i class="icon-envelope"></i> | ||
+ | <div class="email"> | ||
+ | <a href="#">mail@wpeden.com</a> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div><!--End address--> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div><!-- /row --> | ||
+ | |||
+ | |||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | </div><!-- /transparent-bg --> | ||
+ | |||
+ | |||
+ | |||
+ | <div class="gmap map" id="map" data-center="Brugse Heirweg 37 Aartrijke Belgium" data-zoom="15"> | ||
+ | <address> | ||
+ | <div><iframe src="http://maps.google.com/maps/ms?vpsrc=6&ctz=-480&ie=UTF8&msa=0&msid=210840796990572645528.00049770919ccd6759de3&t=m&ll=30.751278,68.203125&spn=84.446143,175.429688&z=2&output=embed" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="1150" height="400"> </iframe></div> | ||
+ | </address> | ||
+ | </div><!--End map--> | ||
+ | |||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | </body> | ||
+ | </html> |
Revision as of 11:01, 3 August 2016
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Creative Minds
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
John Doe
Graphic Designer
John Doe
Graphic Designer
John Doe
Graphic Designer
About Us
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place.
Our Goals
Our Goals
HTML 40%Our Services
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
Photography
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
Creative Ideas
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
Consulting
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
Testimonial
"You only live once, but if you do it right, once is enough."
Mae West
Our Pricing
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
Our Blog
We are team of creative photographers. We passionate with photography and other creative things. If you are looking professional photography theme with endless possibilities, you come in right place. This template consist of well-organized layers. Tons of features waiting for you.
Contact Us
Address:
Chandgao Abashik,
Chittagong.