Station

One Page Agency HTML Template


Files Structure

All files and folder organized nicely.

HTML Structure

Every section start with a comment like this

< !-- ========== Section Name start ========== >
and end with comment like this 
<!-- ========== Section Name end ========== >

 

CSS table structure

Every point of CSS content you will find start with a comment like

/*  ----------------------------------------------------

#. CSS point name

-------------------------------------------------------- */

some code here

Javascript Code Structure

Every point of CSS content you will find start with a comment like in JS folder's main.js file

/*  ----------------------------------------------------

#. Javascript point name

-------------------------------------------------------- */

some code here

Typography

Font family:

All fonts used from google web font directory. We used it by import in css/style.css file. There called 3 fonts like below structure. You could change the fonts. Follow google web font document here

/*  ----------------------------------------------------
1. IMPORT GOOGLE FONTS
-------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Audiowide|Raleway:400,500,600,700|Roboto:400,500,700');

Headings and paragraph:

All headings and paragraphs typography used in css/style.css file. You can manage them easily.

Logo:

You can change current logo text to your own or if you wish to use your custom image logo put the logo into img folder and call it into the logo section of navbar. See image below. Don't forgot to remove text anchor line.

 Header menu:

Here is markup for header nav item. 

            <!-- menu -->

            <div class="navbar-collapse collapse" id="data-scroll">

                <ul class="nav navbar-nav navbar-nav-op navbar-right">

                    <li><a href="#home">Home</a>

                    </li>

                    <li><a href="#service">Service</a>

                    </li>

                    <li><a href="#project">Project</a>

                    </li>

                    <li><a href="#pricing">Pricing</a>

                    </li>

                    <li><a href="#blog">Blog</a>

                    </li>

                    <li><a href="#contact">Contact</a>

                    </li>

                </ul>

            </div>

            <!--/Menu -->
 
You can add a new menu paste <li><a href="#section_id">Menu Name<a></li> under the li emenet you want to show.
 

Buttons:

We have 2 type of styles buttons. You will find CSS for buttons under:
 /* - 3-3 BUTTONS */
<a href="#" class="btn btn_white">Learn More</a>

<a href="#" class="btn gradient-border btn-gredient">Learn More</a>

Section title:

Only one style for all section titles. You will find CSS for them under:

/* - 3-2 SECTION TITLE */
            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Best <span>Skills</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">Expertise Areas</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- end section title -->
 

Footer Logo:

You can change footer exactly like header logo.
 

Social bookmark:

Here is markup for social media:

                        <!-- footer social icon -->

                        <ul class="footer-social">

                            <li class="fadeIn  wow animated" data-wow-delay=".1s"><a href="#"><i class="fa fa-facebook"></i></a>

                            </li>

                            <li class="fadeIn  wow animated" data-wow-delay=".2s"><a href="#"><i class="fa fa-dribbble"></i></a>

                            </li>

                            <li class="fadeIn  wow animated" data-wow-delay=".3s"><a href="#"><i class="fa fa-behance"></i></a>

                            </li>

                            <li class="fadeIn  wow animated" data-wow-delay=".4s"><a href="#"><i class="fa fa-twitter"></i></a>

                            </li>

                            <li class="fadeIn  wow animated" data-wow-delay=".5s"><a href="#"><i class="fa fa-linkedin"></i></a>

                            </li>

                            <li class="fadeIn  wow animated" data-wow-delay=".6s"><a href="#"><i class="fa fa-google-plus"></i></a>

                            </li>

                        </ul>

                        <!-- End social icon -->
 
If you wish to add a new icon paste this line <li><a href="#"><i class="fa fa-fontawesomeiconname"></i></a></li> In the # put your link of social media and <i class="fa fa-fontawesomeiconname"></i> replace this with fontawesome icon you need.
    <!-- ========== hero section ========== -->

    <section id="home" class="hero_half_screen text-center parallax-window" data-parallax="scroll" data-image-src="img/hero-bg.jpg">

        <div class="bg-overlay-gradient opacity-9"></div>

        <div class="pt210 pb120">

            <div class="container">

                <div class="hero-content col-sm-6 col-sm-offset-3">

                    <a href="#" class="logo mb30">Station</a>

                    <h1 class="mb40">We Have Talented Team</h1>

                    <p class="mb40">

                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's typesetting industry standard dummy text ever since the typesetting.

                    </p>

                    <a href="#" class="btn btn_white">Learn More</a>

                </div>

            </div>

        </div>

    </section>

    <!-- ========== hero section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

6. HERO SECTIONS

-------------------------------------------------------- */

 

   <!-- ========== services section  Start ========== -->

    <section id="service" class="gray-bg pt80 pb80">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Our Best <span>Services</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">What We Do For You</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- end section title  -->

            <div class="row">

                <!-- single service box start-->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb30 pl20 pr20 pt40 pb50 text-center animated fadeInDown wow" data-wow-delay=".1s">

                        <div class="icon-focus mb45">

                            <i class="pe-7s-arc"></i>

                        </div>

                        <h3 class="mb45">User Interface</h3>

                        <p class="mb45">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum been the standard dummy text ever since the 1500s</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- single service box end-->


                <!-- single service box start-->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb30 pl20 pr20 pt40 pb50 text-center animated fadeInDown wow" data-wow-delay=".2s">

                        <div class="icon-focus mb45">

                            <i class="pe-7s-edit"></i>

                        </div>

                        <h3 class="mb45">Web Development</h3>

                        <p class="mb45">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum been the standard dummy text ever since the 1500s</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- single service box end-->


                <!-- single service box start-->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb30 pl20 pr20 pt40 pb50 text-center animated fadeInDown wow" data-wow-delay=".3s">

                        <div class="icon-focus mb45">

                            <i class="pe-7s-diamond"></i>

                        </div>

                        <h3 class="mb45">App Development</h3>

                        <p class="mb45">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum been the standard dummy text ever since the 1500s</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- single service box end-->


                <!-- single service box start-->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb30 pl20 pr20 pt40 pb50 text-center animated fadeInDown wow" data-wow-delay=".4s">

                        <div class="icon-focus mb45">

                            <i class="pe-7s-ribbon"></i>

                        </div>

                        <h3 class="mb45">User Interface</h3>

                        <p class="mb45">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum been the standard dummy text ever since the 1500s</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- single service box end-->


                <!-- single service box start-->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb30 pl20 pr20 pt40 pb50 text-center animated fadeInDown wow" data-wow-delay=".5s">

                        <div class="icon-focus mb45">

                            <i class="pe-7s-bandaid"></i>

                        </div>

                        <h3 class="mb45">User Interface</h3>

                        <p class="mb45">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum been the standard dummy text ever since the 1500s</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- single service box end-->


                <!-- single service box start-->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb30 pl20 pr20 pt40 pb50 text-center animated fadeInDown wow" data-wow-delay=".6s">

                        <div class="icon-focus mb45">

                            <i class="pe-7s-shield"></i>

                        </div>

                        <h3 class="mb45">User Interface</h3>

                        <p class="mb45">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum been the standard dummy text ever since the 1500s</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- single service box end-->

            </div>

        </div>

    </section>

    <!-- ========== services section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

7. SERVICE SECTION

-------------------------------------------------------- */
    <!-- ========== Our mission section  Start ========== -->

    <section id="our-mission" class="white-bg pt80 pb80">

        <div class="container">

            <div class="row">

                <!-- our mission image start-->

                <div class="col-sm-5 pr40">

                    <img class="img-full fadeInLeft wow animated" data-wow-delay=".1s" src="img/our-mission.jpg" alt="" />

                </div>

                <!-- our mission image end-->


                <!-- our mission content start-->

                <div class="col-sm-7">

                    <div class="our-mission-content">

                        <h2 class="mb30 fadeIn animated wow" data-wow-delay=".2s">Our Mission</h2>

                        <p class="fadeIn animated wow" data-wow-delay=".1s">Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un</p>

                        <p class="fadeIn animated wow" data-wow-delay=".2s">also the leap into electronic typesetting, remaining essentially un also the leapwith the release of Letraset sheets containing Lorem Ipsum passages, heo and versions of Lorem Ipsum.</p>

                        <a href="#" class="btn gradient-border btn-gredient">Learn More</a>

                    </div>

                </div>

                <!-- our mission content end-->

            </div>

        </div>

    </section>

    <!-- ========== Our mission section  End ========== -->
 
You will find the intro demo section in the index.html file and the css in main.css after this comment
/*  ----------------------------------------------------

8. OUR MISSION SECTION

-------------------------------------------------------- */

 

    <!-- ========== Skill section  Start ========== -->

    <section id="skills" class="gray-bg pt80 pb35">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Best <span>Skills</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">Expertise Areas</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- end section title -->

            <div class="row">

                <!-- start left progress bars -->

                <div class="col-sm-6">

                    <div class="progress_bar">

                        <!-- start single progress -->

                        <div class="single_progressbar">

                            <div class="skill_text">

                                <span>User Interface</span>

                                <span class="pull-right skill_bar">90%</span>

                            </div>

                            <div class="progress mb45">

                                <div class="gradient-border">

                                    <div class="progress-bar progress-bg-1" role="progressbar" data-transitiongoal="90"></div>

                                </div>

                            </div>

                        </div>

                        <!-- end single progress -->


                        <!-- start single progress -->

                        <div class="single_progressbar">

                            <div class="skill_text">

                                <span>User Experience</span>

                                <span class="pull-right skill_bar">70%</span>

                            </div>

                            <div class="progress mb45">

                                <div class="gradient-border">

                                    <div class="progress-bar progress-bg-2" role="progressbar" data-transitiongoal="70"></div>

                                </div>

                            </div>

                        </div>

                        <!-- end single progress -->


                        <!-- start single progress -->

                        <div class="single_progressbar">

                            <div class="skill_text">

                                <span>Branding Design</span>

                                <span class="pull-right skill_bar">90%</span>

                            </div>

                            <div class="progress mb45">

                                <div class="gradient-border">

                                    <div class="progress-bar progress-bg-3" role="progressbar" data-transitiongoal="90"></div>

                                </div>

                            </div>

                        </div>

                        <!-- end single progress -->

                    </div>

                </div>

                <!-- end left progress bars -->


                <!-- start right progress bars -->

                <div class="col-sm-6">

                    <div class="progress_bar">

                        <!-- start single progress -->

                        <div class="single_progressbar ">

                            <div class="skill_text">

                                <span>Web Design</span>

                                <span class="pull-right skill_bar">80%</span>

                            </div>

                            <div class="progress mb45">

                                <div class="gradient-border">

                                    <div class="progress-bar progress-bg-2" role="progressbar" data-transitiongoal="80"></div>

                                </div>

                            </div>

                        </div>

                        <!-- end single progress -->


                        <!-- start single progress -->

                        <div class="single_progressbar ">

                            <div class="skill_text">

                                <span>Marketing</span>

                                <span class="pull-right skill_bar">50%</span>

                            </div>

                            <div class="progress mb45">

                                <div class="gradient-border">

                                    <div class="progress-bar progress-bg-3" role="progressbar" data-transitiongoal="50"></div>

                                </div>

                            </div>

                        </div>

                        <!-- end single progress -->


                        <!-- start single progress -->

                        <div class="single_progressbar mb45">

                            <div class="skill_text">

                                <span>Wordpress</span>

                                <span class="pull-right skill_bar">60%</span>

                            </div>

                            <div class="progress mb0">

                                <div class="gradient-border">

                                    <div class="progress-bar progress-bg-1" role="progressbar" data-transitiongoal="60"></div>

                                </div>

                            </div>

                        </div>

                        <!-- end single progress -->

                    </div>

                </div>

                <!-- end right progress bars -->

            </div>

        </div>

    </section>

    <!-- ========== Skill section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------
9. SKILLS SECTION
-------------------------------------------------------- */
    <!-- ========== Team section  Start ========== -->

    <section id="team" class="white-bg pt80 pb80">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Meet The <span>Creative</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">Who Work With US</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- end section title -->

            <div class="row">

                <!-- start single team -->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb15 mt15 fadeInDown wow animated" data-wow-delay=".1s">

                        <div class="team-avater">

                            <img class="img-full" src="img/team/team-1.jpg" alt="" />

                            <div class="bg-overlay-gradient opacity-9"></div>

                            <ul class="team-social">

                                <li>

                                    <a href="#"><i class="fa fa-facebook"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-twitter"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-dribbble"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-instagram"></i></a>

                                </li>

                            </ul>

                        </div>

                        <div class="member-info">

                            <h4>Saif Ullah Patowary</h4>

                            <h6>UI & UX Designer</h6>

                        </div>

                    </div>

                </div>

                <!-- end single team -->

                <!-- start single team -->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb15 mt15 fadeInDown wow animated" data-wow-delay=".2s">

                        <div class="team-avater">

                            <img class="img-full" src="img/team/team-2.jpg" alt="" />

                            <div class="bg-overlay-gradient opacity-9"></div>

                            <ul class="team-social">

                                <li>

                                    <a href="#"><i class="fa fa-facebook"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-twitter"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-dribbble"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-instagram"></i></a>

                                </li>

                            </ul>

                        </div>

                        <div class="member-info">

                            <h4>Ashiful Haque Pappu</h4>

                            <h6>UI & UX Designer</h6>

                        </div>

                    </div>

                </div>

                <!-- end single team -->

                <!-- start single team -->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb15 mt15 fadeInDown wow animated" data-wow-delay=".3s">

                        <div class="team-avater">

                            <img class="img-full" src="img/team/team-3.jpg" alt="" />

                            <div class="bg-overlay-gradient opacity-9"></div>

                            <ul class="team-social">

                                <li>

                                    <a href="#"><i class="fa fa-facebook"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-twitter"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-dribbble"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-instagram"></i></a>

                                </li>

                            </ul>

                        </div>

                        <div class="member-info">

                            <h4>Santush Deb Nath</h4>

                            <h6>UI & UX Designer</h6>

                        </div>

                    </div>

                </div>

                <!-- end single team -->

                <!-- start single team -->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb15 mt15 fadeInDown wow animated" data-wow-delay=".4s">

                        <div class="team-avater">

                            <img class="img-full" src="img/team/team-4.jpg" alt="" />

                            <div class="bg-overlay-gradient opacity-9"></div>

                            <ul class="team-social">

                                <li>

                                    <a href="#"><i class="fa fa-facebook"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-twitter"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-dribbble"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-instagram"></i></a>

                                </li>

                            </ul>

                        </div>

                        <div class="member-info">

                            <h4>Saif Ullah Patowary</h4>

                            <h6>UI & UX Designer</h6>

                        </div>

                    </div>

                </div>

                <!-- end single team -->

                <!-- start single team -->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb15 mt15 fadeInDown wow animated" data-wow-delay=".5s">

                        <div class="team-avater">

                            <img class="img-full" src="img/team/team-5.jpg" alt="" />

                            <div class="bg-overlay-gradient opacity-9"></div>

                            <ul class="team-social">

                                <li>

                                    <a href="#"><i class="fa fa-facebook"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-twitter"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-dribbble"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-instagram"></i></a>

                                </li>

                            </ul>

                        </div>

                        <div class="member-info">

                            <h4>Ritesh Deshmukh</h4>

                            <h6>UI & UX Designer</h6>

                        </div>

                    </div>

                </div>

                <!-- end single team -->

                <!-- start single team -->

                <div class="col-md-4 col-xs-12 col-sm-6">

                    <div class="icon-box mb15 mt15 fadeInDown wow animated" data-wow-delay=".6s">

                        <div class="team-avater">

                            <img class="img-full" src="img/team/team-6.jpg" alt="" />

                            <div class="bg-overlay-gradient opacity-9"></div>

                            <ul class="team-social">

                                <li>

                                    <a href="#"><i class="fa fa-facebook"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-twitter"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-dribbble"></i></a>

                                </li>

                                <li>

                                    <a href="#"><i class="fa fa-instagram"></i></a>

                                </li>

                            </ul>

                        </div>

                        <div class="member-info">

                            <h4>Genelia  D'souza</h4>

                            <h6>UI & UX Designer</h6>

                        </div>

                    </div>

                </div>

                <!-- end single team -->

            </div>

        </div>

    </section>

    <!-- ========== Team section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

10. TEAM SECTION

-------------------------------------------------------- */
    <!-- ========== Project section  Start ========== -->

    <section id="project" class="gray-bg pt80 pb80">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">See Our Best <span>Portfolio</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">Recent Creative Work</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- section title -->


            <!-- Filter Controls -->

            <ul id="filtr-container" class="portfolio-categories mb45">

                <li data-filter="all" class="active">All</li>

                <li data-filter="1">Web Design</li>

                <li data-filter="2">UI Design</li>

                <li data-filter="3">App Design</li>

            </ul>

            <!-- Filter Controls end-->

            <!-- Start Dynamic Grid -->

            <div class="row filtr-container">

                <!-- start single project -->

                <div class="filtr-item col-xs-12 col-sm-6 col-md-4" data-category="1 , 2">

                    <div class="project_box">

                        <img class="img-full" src="img/project/project-thumb-1.jpg" alt="pro1" />

                        <div class="product_info">

                            <div class="product_info_text">

                                <a href="#" data-toggle="modal" data-target="#project-detail-1">View Details</a>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- first project modal -->

                <div class="modal fade" id="project-detail-1">

                    <div class="modal-dialog modal-lg" role="document">

                        <div class="modal-content">

                            <div class="modal-header">

                                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>

                                </button>

                                <h3 class="modal-title">Project Name</h3>

                            </div>

                            <div class="modal-body project-detail-wrapper">

                                <img class="img-full" src="img/project/project-1.jpg" alt="pro1" />

<div class="portfolio-content">

<h3>Project Description</h3>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un.</p>


<div class="project-info-box">

<h4>Categories:</h4>

<div class="project-terms">

<a href="#">Web design</a> <a href="#">UI Design</a>

</div>

</div>

<div class="project-info-box">

<h4>Project URL:</h4>

<span><a href="#" target="_blank">View Project</a></span>

</div>

</div>

                            </div>

                            <div class="modal-footer">

                                <button type="button" class="btn gradient-border btn-gredient" data-dismiss="modal">Close</button>


                            </div>

                        </div>

                    </div>

                </div>

                <!-- end single project -->

                <!-- start single project -->

                <div class="filtr-item col-xs-12 col-sm-6 col-md-4" data-category="3 , 1">

                    <div class="project_box">

                        <img class="img-full" src="img/project/project-thumb-2.jpg" alt="pro1" />

                        <div class="product_info">

                            <div class="product_info_text">

                                <a href="#" data-toggle="modal" data-target="#project-detail-2">View Details</a>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- second project modal -->

                <div class="modal fade" id="project-detail-2">

                    <div class="modal-dialog modal-lg" role="document">

                        <div class="modal-content">

                            <div class="modal-header">

                                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>

                                </button>

                                <h3 class="modal-title">Project Name</h3>

                            </div>

                            <div class="modal-body project-detail-wrapper">

                                <img class="img-full" src="img/project/project-2.jpg" alt="pro1" />

<div class="portfolio-content">

<h3>Project Description</h3>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un.</p>


<div class="project-info-box">

<h4>Categories:</h4>

<div class="project-terms">

<a href="#">Web design</a> <a href="#">UI Design</a>

</div>

</div>

<div class="project-info-box">

<h4>Project URL:</h4>

<span><a href="#" target="_blank">View Project</a></span>

</div>

</div>

                            </div>

                            <div class="modal-footer">

                                <button type="button" class="btn gradient-border btn-gredient" data-dismiss="modal">Close</button>


                            </div>

                        </div>

                    </div>

                </div>

                <!-- end single project -->

                <!-- start single project -->

                <div class="filtr-item col-xs-12 col-sm-6 col-md-4" data-category="2 , 3">

                    <div class="project_box">

                        <img class="img-full" src="img/project/project-thumb-3.jpg" alt="pro1" />

                        <div class="product_info">

                            <div class="product_info_text">

                                <a href="#" data-toggle="modal" data-target="#project-detail-3">View Details</a>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- third project modal -->

                <!-- second project modal -->

                <div class="modal fade" id="project-detail-3">

                    <div class="modal-dialog modal-lg" role="document">

                        <div class="modal-content">

                            <div class="modal-header">

                                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>

                                </button>

                                <h3 class="modal-title">Project Name</h3>

                            </div>

                            <div class="modal-body project-detail-wrapper">

                                <img class="img-full" src="img/project/project-3.jpg" alt="pro1" />

<div class="portfolio-content">

<h3>Project Description</h3>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un.</p>


<div class="project-info-box">

<h4>Categories:</h4>

<div class="project-terms">

<a href="#">Web design</a> <a href="#">UI Design</a>

</div>

</div>

<div class="project-info-box">

<h4>Project URL:</h4>

<span><a href="#" target="_blank">View Project</a></span>

</div>

</div>

                            </div>

                            <div class="modal-footer">

                                <button type="button" class="btn gradient-border btn-gredient" data-dismiss="modal">Close</button>


                            </div>

                        </div>

                    </div>

                </div>

                <!-- end single project -->

                <!-- start single project -->

                <div class="filtr-item col-xs-12 col-sm-6 col-md-4" data-category="1 , 2">

                    <div class="project_box">

                        <img class="img-full" src="img/project/project-thumb-4.jpg" alt="pro1" />

                        <div class="product_info">

                            <div class="product_info_text">

                                <a href="#" data-toggle="modal" data-target="#project-detail-4">View Details</a>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- fourth project modal -->

                <div class="modal fade" id="project-detail-4">

                    <div class="modal-dialog modal-lg" role="document">

                        <div class="modal-content">

                            <div class="modal-header">

                                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>

                                </button>

                                <h3 class="modal-title">Project Name</h3>

                            </div>

                            <div class="modal-body project-detail-wrapper">

                                <img class="img-full" src="img/project/project-4.jpg" alt="pro1" />

<div class="portfolio-content">

<h3>Project Description</h3>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un.</p>


<div class="project-info-box">

<h4>Categories:</h4>

<div class="project-terms">

<a href="#">Web design</a> <a href="#">UI Design</a>

</div>

</div>

<div class="project-info-box">

<h4>Project URL:</h4>

<span><a href="#" target="_blank">View Project</a></span>

</div>

</div>

                            </div>

                            <div class="modal-footer">

                                <button type="button" class="btn gradient-border btn-gredient" data-dismiss="modal">Close</button>


                            </div>

                        </div>

                    </div>

                </div>

                <!-- end single project -->

                <!-- start single project -->

                <div class="filtr-item col-xs-12 col-sm-6 col-md-4" data-category="3 , 1">

                    <div class="project_box">

                        <img class="img-full" src="img/project/project-thumb-5.jpg" alt="pro1" />

                        <div class="product_info">

                            <div class="product_info_text">

                                <a href="#" data-toggle="modal" data-target="#project-detail-5">View Details</a>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- fiveth project modal -->

                <div class="modal fade" id="project-detail-5">

                    <div class="modal-dialog modal-lg" role="document">

                        <div class="modal-content">

                            <div class="modal-header">

                                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>

                                </button>

                                <h3 class="modal-title">Project Name</h3>

                            </div>

                            <div class="modal-body project-detail-wrapper">

                                <img class="img-full" src="img/project/project-5.jpg" alt="pro1" />

<div class="portfolio-content">

<h3>Project Description</h3>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un.</p>


<div class="project-info-box">

<h4>Categories:</h4>

<div class="project-terms">

<a href="#">Web design</a> <a href="#">UI Design</a>

</div>

</div>

<div class="project-info-box">

<h4>Project URL:</h4>

<span><a href="#" target="_blank">View Project</a></span>

</div>

</div>

                            </div>

                            <div class="modal-footer">

                                <button type="button" class="btn gradient-border btn-gredient" data-dismiss="modal">Close</button>


                            </div>

                        </div>

                    </div>

                </div>

                <!-- end single project -->

                <!-- start single project -->

                <div class="filtr-item col-xs-12 col-sm-6 col-md-4" data-category="2 , 3">

                    <div class="project_box">

                        <img class="img-full" src="img/project/project-thumb-6.jpg" alt="pro1" />

                        <div class="product_info">

                            <div class="product_info_text">

                                <a href="#" data-toggle="modal" data-target="#project-detail-6">View Details</a>

                            </div>

                        </div>

                    </div>

                </div>

                <!-- sixth project modal -->

               <div class="modal fade" id="project-detail-6">

                    <div class="modal-dialog modal-lg" role="document">

                        <div class="modal-content">

                            <div class="modal-header">

                                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>

                                </button>

                                <h3 class="modal-title">Project Name</h3>

                            </div>

                            <div class="modal-body project-detail-wrapper">

                                <img class="img-full" src="img/project/project-6.jpg" alt="pro1" />

<div class="portfolio-content">

<h3>Project Description</h3>

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industr hello Ipsum has been the industry's standard dummy text ever since the 1500s, ian also the leap into electronic typesetting, remaining essentially un also the leap into electronic typesetting, remaining essentially un.</p>


<h3>Project Details</h3>

<div class="project-info-box">

<h4>Categories:</h4>

<div class="project-terms">

<a href="#">Web design</a>

<br><a href="#">UI Design</a>

</div>

</div>

<div class="project-info-box">

<h4>Project URL:</h4>

<span><a href="#" target="_blank">View Project</a></span>

</div>

</div>

                            </div>

                            <div class="modal-footer">

                                <button type="button" class="btn gradient-border btn-gredient" data-dismiss="modal">Close</button>


                            </div>

                        </div>

                    </div>

                </div>

                <!-- end single project -->

            </div>

            <!-- End Dynamic Grid -->

        </div>

    </section>

    <!-- ========== Project section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

11. PROJECT SECTION

-------------------------------------------------------- */
    <!-- ========== Pricing section  Start ========== -->

    <section id="pricing" class="pt80 pb80 bg-white">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">our Best <span>prices</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">Services Price Plan</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- end section title  -->

            <div class="row">

                <!-- start single table -->

                <div class="col-xs-12 col-sm-4">

                    <div class="price-box icon-box pt45 pb50 pl30 pr30 fadeInLeft animated wow" data-wow-delay=".1s">

                        <div class="price_header text-center">

                            <div class="plan-name pb50">

                                <h3>Basic Plan</h3>

                            </div>

                            <div class="plan-price mb30">

                                <sup>$</sup>29<span>/ Month</span>

                            </div>

                        </div>

                        <ul class=" plan-options">

                            <li><i class="fa fa-check"></i>1 TH Storage</li>

                            <li><i class="fa fa-check"></i>Unlimited Members</li>

                            <li><i class="fa fa-check"></i>50 Project</li>

                            <li><i class="fa fa-check"></i>70GB Bandwidth</li>

                            <li><i class="fa fa-check"></i>1 TH Storage</li>

                        </ul>

                        <div class="mt35 text-center">

                            <a href="#" class="btn gradient-border btn-gredient">Register Today</a>

                        </div>

                    </div>

                </div>

                <!-- end single table -->

                <!-- start single table -->

                <div class="col-xs-12 col-sm-4">

                    <div class="price-box featured-box icon-box pt45 pb50 pl30 pr30 fadeInLeft animated wow" data-wow-delay=".3s">

                        <div class="price_header text-center">

                            <div class="plan-name pb50">

                                <h3>Advance Plan</h3>

                            </div>

                            <div class="plan-price mb30">

                                <sup>$</sup>55<span>/ Month</span>

                            </div>

                        </div>

                        <ul class=" plan-options">

                            <li><i class="fa fa-check"></i>1 TH Storage</li>

                            <li><i class="fa fa-check"></i>Unlimited Members</li>

                            <li><i class="fa fa-check"></i>50 Project</li>

                            <li><i class="fa fa-check"></i>70GB Bandwidth</li>

                            <li><i class="fa fa-check"></i>1 TH Storage</li>

                        </ul>

                        <div class="mt35 text-center">

                            <a href="#" class="btn gradient-border btn-gredient">Register Today</a>

                        </div>

                    </div>

                </div>

                <!-- end single table -->

                <!-- start single table -->

                <div class="col-xs-12 col-sm-4">

                    <div class="price-box icon-box pt45 pb50 pl30 pr30 fadeInLeft animated wow" data-wow-delay=".5s">

                        <div class="price_header text-center">

                            <div class="plan-name pb50">

                                <h3>Enterprise Plan</h3>

                            </div>

                            <div class="plan-price mb30">

                                <sup>$</sup>100<span>/ Month</span>

                            </div>

                        </div>

                        <ul class=" plan-options">

                            <li><i class="fa fa-check"></i>1 TH Storage</li>

                            <li><i class="fa fa-check"></i>Unlimited Members</li>

                            <li><i class="fa fa-check"></i>50 Project</li>

                            <li><i class="fa fa-check"></i>70GB Bandwidth</li>

                            <li><i class="fa fa-check"></i>1 TH Storage</li>

                        </ul>

                        <div class="mt35 text-center">

                            <a href="#" class="btn gradient-border btn-gredient">Register Today</a>

                        </div>

                    </div>

                </div>

                <!-- end single table -->

            </div>

        </div>

    </section>

    <!-- ========== Pricing section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

12. PRICE SECTION

-------------------------------------------------------- */

 

   <!-- ========== Counter section  Start ========== -->

    <section class="counter_section" style="background-image: url('img/counter-bg.jpg')">

        <div class="bg-overlay-gradient opacity-9"></div>

        <div class="counter_section_inner  pt80 pb80">

            <div class="container">

                <div class="row">

                    <div class="col-sm-4 col-xs-12">

                        <!--counter box-->

                        <div class="counter_box pt40 pb40 pr30 pl30 text-center fadeInDown animated wow" data-wow-delay=".1s">

                            <div class="counter_number pb50 counter">300</div>

                            <h3 class="counter_name">Projects Completed</h3>

                        </div>

                        <!--counter box end-->

                    </div>

                    <div class="col-sm-4 col-xs-12">

                        <!--counter box-->

                        <div class="counter_box pt40 pb40 pr30 pl30 text-center fadeInDown animated wow" data-wow-delay=".2s">

                            <div class="counter_number pb50 counter">210</div>

                            <h3 class="counter_name">Happy Clients</h3>

                        </div>

                        <!--counter box end-->

                    </div>

                    <div class="col-sm-4 col-xs-12">

                        <!--counter box-->

                        <div class="counter_box pt40 pb40 pr30 pl30 text-center fadeInDown animated wow" data-wow-delay=".4s">

                            <div class="counter_number pb50 counter">1000</div>

                            <h3 class="counter_name">Lines Of Code</h3>

                        </div>

                        <!--counter box end-->

                    </div>

                </div>

            </div>

        </div>

    </section>

    <!-- ========== Counter section  End ========== -->
You will find the intro demo section in the index.html file and the css in main.css after this comment
/*  ----------------------------------------------------

13. COUNTER SECTION

-------------------------------------------------------- */

 



    <!-- ========== Blog section  Start ========== -->

    <section id="blog" class="gray-bg pt80 pb80">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Read Our <span>Blog</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">Latest Blog Post</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- section title end -->

            <div class="row">

                <!--single blog start-->

                <div class="col-xs-12 col-sm-4">

                    <div class="icon-box article-box fadeInDown wow animated" data-wow-delay=".1s">

                        <div class="blog-meta pl30 pr30 pt20 pb20">

                            <ul>

                                <li class="categorie-meta"><a href="#">Blog</a>

                                </li>

                                <li class="date-meta"><a href="#">18 October 2016</a>

                                </li>

                                <li class="comment-meta"><a href=""><i class="fa fa-comment-o"></i> 22</a>

                                </li>

                                <li class="heart-meta"><a href=""><i class="fa fa-heart-o"></i> 50</a>

                                </li>

                            </ul>

                        </div>

                        <aside class="post-thumbnail">

                            <img class="img-full" src="img/blog/post-thumb-1.jpg" alt="" />

                        </aside>

                        <div class="post-content pl30 pr30 pt20 pb50">

                            <h2 class="mb20"><a href="single-blog.html">Image Blog Post</a></h2>

                            <p class="mb30">Lorem Ipsum is simply dummy tex of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the</p>

                            <a href="single-blog.html">Read More</a>

                        </div>

                    </div>

                </div>

                <!--single blog end-->

                <!--single blog start-->

                <div class="col-xs-12 col-sm-4">

                    <div class="icon-box article-box fadeInDown wow animated" data-wow-delay=".2s">

                        <div class="blog-meta pl30 pr30 pt20 pb20">

                            <ul>

                                <li class="categorie-meta"><a href="#">Blog</a>

                                </li>

                                <li class="date-meta"><a href="#">18 October 2016</a>

                                </li>

                                <li class="comment-meta"><a href=""><i class="fa fa-comment-o"></i> 22</a>

                                </li>

                                <li class="heart-meta"><a href=""><i class="fa fa-heart-o"></i> 50</a>

                                </li>

                            </ul>

                        </div>

                        <aside class="post-thumbnail">

                            <img class="img-full" src="img/blog/post-thumb-2.jpg" alt="" />

                        </aside>

                        <div class="post-content pl30 pr30 pt20 pb50">

                            <h2 class="mb20"><a href="single-blog.html">Image Blog Post</a></h2>

                            <p class="mb30">Lorem Ipsum is simply dummy tex of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the</p>

                            <a href="single-blog.html">Read More</a>

                        </div>

                    </div>

                </div>

                <!--single blog end-->

                <!--single blog start-->

                <div class="col-xs-12 col-sm-4">

                    <div class="icon-box article-box fadeInDown wow animated" data-wow-delay=".4s">

                        <div class="blog-meta pl30 pr30 pt20 pb20">

                            <ul>

                                <li class="categorie-meta"><a href="#">Blog</a>

                                </li>

                                <li class="date-meta"><a href="#">18 October 2016</a>

                                </li>

                                <li class="comment-meta"><a href=""><i class="fa fa-comment-o"></i> 22</a>

                                </li>

                                <li class="heart-meta"><a href=""><i class="fa fa-heart-o"></i> 50</a>

                                </li>

                            </ul>

                        </div>

                        <aside class="post-thumbnail">

                            <img class="img-full" src="img/blog/post-thumb-3.jpg" alt="" />

                        </aside>

                        <div class="post-content pl30 pr30 pt20 pb50">

                            <h2 class="mb20"><a href="single-blog.html">Image Blog Post</a></h2>

                            <p class="mb30">Lorem Ipsum is simply dummy tex of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the</p>

                            <a href="single-blog.html">Read More</a>

                        </div>

                    </div>

                </div>

                <!--single blog end-->

                <div class="clearfix"></div>

                <div class="all-post-btn text-center mt50">

                    <a href="blog.html" class="btn gradient-border btn-gredient fadeIn animated wow" data-wow-delay=".2s">All posts</a>

                </div>

            </div>

        </div>

    </section>

    <!-- ========== Blog section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

14. BLOG SECTION

-------------------------------------------------------- */
    <!-- ========== Testimonial section  Start ========== -->

    <section id="testimonial" class="white-bg pt80 pb80">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Clients <span>Say</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">What Our Clients Say</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- section title end -->

            <div class="row">

                <div class="testimonial-carousel">

                    <!-- single testimonial start -->

                    <div class="testimonial-item">

                        <div class="testimonial-box pl20 pr20 pt40 pb40 mb45 text-center">

<div class="bg-overlay-gradient testimonial-hover"></div>

<div class="col-sm-12">

                            <h3 class="mb40"><sup><i class="fa fa-quote-left"></i></sup> Just Perfect <sup><i class="fa fa-quote-right"></i></sup></h3>

                            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Lpsum has been he industry' standard dummy</p>

</div>

                        </div>

                        <div class="clearfix"></div>

                        <div class="client-info mt35">

                            <div class="pull-left pr15">

                                <img src="img/client/client-1.jpg" alt="" />

                            </div>

                            <div class="pull-left">

                                <p>Jean Doe, CEO

                                    <br><a href="#">Pinterest</a>

                                </p>

                            </div>

                        </div>

                    </div>

                    <!-- single testimonial end -->

                    <!-- single testimonial start -->

                    <div class="testimonial-item">

                        <div class="testimonial-box pl20 pr20 pt40 pb40 mb45 text-center">

<div class="bg-overlay-gradient testimonial-hover"></div>

<div class="col-sm-12">

                            <h3 class="mb40"><sup><i class="fa fa-quote-left"></i></sup> Just Perfect <sup><i class="fa fa-quote-right"></i></sup></h3>

                            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Lpsum has been he industry' standard dummy</p>

</div>

                        </div>

                        <div class="clearfix"></div>

                        <div class="client-info mt35">

                            <div class="pull-left pr15">

                                <img src="img/client/client-2.jpg" alt="" />

                            </div>

                            <div class="pull-left">

                                <p>Sam Sumon, Coo

                                    <br><a href="#">Paypal</a>

                                </p>

                            </div>

                        </div>

                    </div>

                    <!-- single testimonial end -->

                    <!-- single testimonial start -->

                    <div class="testimonial-item">

                        <div class="testimonial-box pl20 pr20 pt40 pb40 mb45 text-center">

<div class="bg-overlay-gradient testimonial-hover"></div>

<div class="col-sm-12">

                            <h3 class="mb40"><sup><i class="fa fa-quote-left"></i></sup> Just Perfect <sup><i class="fa fa-quote-right"></i></sup></h3>

                            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Lpsum has been he industry' standard dummy</p>

</div>

                        </div>

                        <div class="clearfix"></div>

                        <div class="client-info mt35">

                            <div class="pull-left pr15">

                                <img src="img/client/client-3.jpg" alt="" />

                            </div>

                            <div class="pull-left">

                                <p>Jean Shimul, CCO

                                    <br><a href="#">Google</a>

                                </p>

                            </div>

                        </div>

                    </div>

                    <!-- single testimonial end -->

                    <!-- single testimonial start -->

                    <div class="testimonial-item">

                        <div class="testimonial-box pl20 pr20 pt40 pb40 mb45 text-center">

<div class="bg-overlay-gradient testimonial-hover"></div>

<div class="col-sm-12">

                            <h3 class="mb40"><sup><i class="fa fa-quote-left"></i></sup> Just Perfect <sup><i class="fa fa-quote-right"></i></sup></h3>

                            <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Lpsum has been he industry' standard dummy</p>

</div>

                        </div>

                        <div class="clearfix"></div>

                        <div class="client-info mt35">

                            <div class="pull-left pr15">

                                <img src="img/client/client-4.jpg" alt="" />

                            </div>

                            <div class="pull-left">

                                <p>Jean Doe, CEO

                                    <br><a href="#">Pinterest</a>

                                </p>

                            </div>

                        </div>

                    </div>

                    <!-- single testimonial end -->

                </div>

            </div>

        </div>

    </section>

    <!-- ========== Testimonial section  End ========== -->

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

15. TESTIMONIAL SECTION

-------------------------------------------------------- */
   <!-- ========== Contact section  Start ========== -->

    <section id="contact" class="gray-bg pt80 pb80">

        <div class="container">

            <!-- section title -->

            <div class="row">

                <div class="col-sm-12">

                    <div class="section-title mb40">

                        <h6 class="fadeIn animated wow" data-wow-delay=".2s">Say <span>Hello</span></h6>

                        <h2 class="fadeIn animated wow" data-wow-delay=".1s">You Feel Free! Say Hello</h2>

                        <i class="pe-7s-angle-down-circle gradient-text-full"></i>

                    </div>

                </div>

            </div>

            <!-- section title end -->

            <div class="row">

                <!-- contact content start -->

                <div class="col-md-4 col-sm-6 col-xs-12 contact-info pr30 fadeIn  wow animated" data-wow-delay=".1s">

                    <h3>Contact Information</h3>

                    <p>Lorem Ipsum is simply dummy text the printing and typesetting industry.Lorem ing and typesetting industry.</p>


                    <div class="mt45">

                        <div class="contact-info-box mb20">

                            <i class="fa fa-map-marker"></i>

                            <div class="contact-info-terms">

                                <p>Address : 350 Fifth Avenue,

                                    <br>3th floor. New York.</p>

                            </div>

                        </div>

                        <div class="contact-info-box mb20">

                            <i class="fa fa-phone"></i>

                            <div class="contact-info-terms">

                                <p>Phone : 1-123-6987-2369</p>

                            </div>

                        </div>

                        <div class="contact-info-box mb20">

                            <i class="fa fa-envelope"></i>

                            <div class="contact-info-terms">

                                <p>Email : <a href="mailto:contact@dribbble.com">contact@dribbble.com</a>

                                </p>

                            </div>

                        </div>

                        <div class="contact-info-box">

                            <i class="fa fa-globe"></i>

                            <div class="contact-info-terms">

                                <p>Website : <a href="http://www.dribbble.com">www.dribbble.com</a>

                                </p>

                            </div>

                        </div>


                    </div>

                </div>

                <!-- contact content end -->

                <!-- contact form start -->

                <div class="st-form col-md-8 col-sm-6 col-xs-12 pl30 fadeIn  wow animated" data-wow-delay=".2s">

                    <form id="contact-form" method="post" action="php/sendmail.php">

                        <div class="message col-xs-12">

                            <p class="email-loading"><img src="img/loading.gif" alt="">&nbsp;&nbsp;&nbsp;Sending...</p>

                            <p class="email-success"><i class="icon icon-icon-check-alt2"></i> Your quote has successfully been sent.</p>

                            <p class="email-failed"><i class="icon icon-icon-close-alt2"></i> Something went wrong!</p>

                        </div>


                        <div class="col-sm-6 mb30">

                            <input name="name" class="contact-name" id="contact-name" type="text" placeholder="Your Name" required="" />

                        </div>

                        <div class="col-sm-6 mb30">

                            <input name="email" class="contact-email" id="contact-email" type="email" placeholder="Your Email" required="" />

                        </div>

                        <div class="col-sm-12 mb30">

                            <input name="subject" class="contact-subject" id="contact-subject" type="text" placeholder="Subject" required="" />

                        </div>

                        <div class="col-sm-12 mb30">

                            <textarea name="message" class="contact-message" id="contact-message" placeholder="Your Message" required=""></textarea>

                        </div>

                        <div class="col-sm-12">

                            <button class="btn-fill">Send Now</button>

                        </div>

                    </form>

                </div>

                <!-- contact form end -->

            </div>

        </div>

    </section>

    <!-- ========== Contact section  End ========== -->
 
You will find the intro demo section in the index.html file and the css in main.css after this comment
/*  ----------------------------------------------------

16. CONTACT SECTION

-------------------------------------------------------- */

 

Manage contact form:

The contact for we used is totally dynamic. It's working with some ajax and php. You can receive e-mails from your customer. You need to adjust something to work it with you e-mail address. Just go php folder and open sendmail.php file in your text editor. Replace yourmail@gmail.com with your own email address. See screenshot below:

It\s all blog lists page what is contain with all of your blog posts and a pagination.

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

18. BLOG PAGE

-------------------------------------------------------- */

It's blog detail page. What will show detail of blog and there have a comment form.

You will find the intro demo section in the index.html file and the css in main.css after this comment

/*  ----------------------------------------------------

19. SINGLE BLOG PAGE

-------------------------------------------------------- */

If you need to know anything else don't hesitate to ask us by our ThemeForest profile or our email thmeatelier@gmail.com.

 

Credit:

The whole web community.