evgrid User Guide

On behalf of DesignerByte team, we would like to thank you for purchasing this item. Your support encourages us to build better items and continuously bring value to our products. This documentation file covers all the information needed to install and use this Template. You'll find everything you need to know to create a stunning and beautiful website in minutes.

evgrid Introduction

This documentation will give you an understanding of how evgrid template is structured and guide you in performing common functions.

If you want to customize, please contact us here: [email protected]

Author: PBM Infotech

Installation

Follow the steps below to get started with your Site Template:

  1. Open the ... /Template Folder to find all the Templates Files
  2. You will need to Upload these files to your Web Server using FTP in order to use it on your Website.
  3. Make sure you upload the required files/folders listed below:
    • html/css - Stylesheets Folder
    • html/fonts - Fonts Folder
    • html/images - Images Folder
    • html/js - Javacripts Folder
    • html/index.html - (and All HTML files)
    The other files can be used according to your preferences.
  4. You're now good to go..! Start adding your Content and show off your Brand New Beautiful Website in style.

Basic template Structure

The template has a responsive layout and is based on the Bootstrap V4 Framework . Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. Click Here to know more about Bootstrap.


HTML Structure

The general HTML structure is the same throughout the template. Here is thegeneral HTML structure of the template:

<!DOCTYPE html>

<html lang="en">

<head>

[Page meta, page css, page title etc...]

</head>

<body>

<!-- page wrapper -->

<div class="page-wrapper">

<!--header -->

<header id="site-header" class="header">

<div id="header-wrap">

[MENU CONTENT]

</div>

</header>

<!--header -->

<!-- page content -->

<div class="page-content">

<!--Section 1 -->

<section>

[SECTION 1 CONTENT]

</section>

<!--Section 1 -->

<!--Section 2 -->

<section>

[SECTION 2 CONTENT]

</section>

<!--Section 2 -->

</div>

<!-- page content -->

<!--footer -->

<footer class="footer">

[FOOTER_CONTENT]

</footer>

<!--footer -->

</div>

<!-- page wrapper -->

[PAGE JAVASCRIPTS HERE]

</body>

</html>



CSS Structure

The general CSS structure is the same throughout the template. Here is the general CSS structure of the template:


<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">

<!-- Fontawesome -->
<link rel="stylesheet" href="css/fontawesome.css">

<!-- Flaticon -->
<link rel="stylesheet" href="css/flaticon.css">

<!-- Doctery Icons -->
<link rel="stylesheet" href="css/pbminfotech-base-icons.css">

<!-- Themify Icons -->
<link rel="stylesheet" href="css/themify-icons.css">

<!-- Slick -->
<link rel="stylesheet" href="css/swiper.min.css">

<!-- Magnific -->
<link rel="stylesheet" href="css/magnific-popup.css">

<!-- AOS -->
<link rel="stylesheet" href="css/aos.css">

<!-- Shortcode CSS -->
<link rel="stylesheet" href="css/shortcode.css">

<!-- Base CSS -->
<link rel="stylesheet" href="css/base.css">

<!-- Style CSS -->
<link rel="stylesheet" href="css/style.css">

<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">



Javascript Structure

The general Javascript structure is the same throughout the template. Here is the general Javascript structure of the template:


<!-- jQuery JS -->
<script src="js/jquery.min.js"></script>

<!-- Popper JS -->
<script src="js/popper.min.js"></script>

<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js"></script>

<!-- jquery Waypoints JS -->
<script src="js/jquery.waypoints.min.js"></script>

<!-- jquery Appear JS -->
<script src="js/jquery.appear.js"></script>

<!-- Numinate JS -->
<script src="js/numinate.min.js"></script>

<!-- Slick JS -->
<script src="js/swiper.min.js"></script>

<!-- Magnific JS -->
<script src="js/jquery.magnific-popup.min.js"></script>

<!-- Circle Progress JS -->
<script src="js/circle-progress.js"></script> 

<!-- AOS -->
<script src="js/aos.js"></script>

<!-- Scripts JS -->
<script src="js/scripts.js"></script> 

Favicon icon

Favicon is an icon associated with the URL that is displayed at various places, such as in a browser’s address bar or next to the site name in a bookmark list.

You can add a Favicon to your Website using the following code:


<link rel="shortcut icon" href="images/favicon.ico"/>

Logo Settings

The Logo Container can be found in the Header Container - Replace "logo-white.png" with your own logo image URL.

<a href="index.html"><img src="images/logo-dark.png" alt="logo"></a>

Note Default height of logo is 60px. you can set height according to your logo type and your requirement.

Changing Fonts style

You can add/change the site font, from all fonts used from Google Web Font Services, with the one that suits you the best. You can find the font link in css folder base.css file. See example below:

<!-- "Raleway", sans-serif -->
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');

<!-- "Inter", sans-serif -->
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet');

<!-- " "Roboto", sans-serif -->
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet');

                  

In order to change the fonts, you will need to edit the above links with your custom font, You can easily use Google Web Font Services if you plan to use a Google Font or remove it completely. If you plan to use a self hosted font, here is an Example of using Self Hosted Fonts

Helper Classes

We have created some really useful helper classes for you. These classes help you to quick position elements without writing new CSS rules. These classes are generic helper classes predefined in the CSS pages, here is quick view what they can do

Section title

You can use this code for your page section title to maintain title style.

<div class="pbmit-headingg">
   <h2 class="pbmit-title">Your Title</h2>
</div>

Background color

You can use color in the background. simply add .pbmit-bg-color-global (or any color you want) class where you want to use. See example below:

<div class="pbmit-bg-color-global">  

[YOUR CONTENT]

</div>

Note We include 4 background color helper class in our template pbmit-bg-color-global, pbmit-bg-color-secondary, pbmit-bg-color-light and pbmit-bg-color-blackish You can add unlimited background color class according to your needs

Background Image

You can use an image in the background simply add InlineStyle in div tag and by use of this you can create your own bg. See example below:

<div style="background:url(Path); ">    

[YOUR CONTENT]

</div>

Sliders

  • Swiper Slider

Swiper Slider

This excellent carousel slider can be controlled using HTML5 data attributes.

Find the full online Swiper Slider documentation .

Shortcode

  • Accordion
  • Buttons
  • Blog Post
  • Counter
  • Icon Box
  • Service Box
  • Progress Bar
  • Team
  • Testimonials

Accordion

Use the below code to display accordion:

<div class="accordion" id="accordionExample">
    <div class="accordion-item">
        <h2 class="accordion-header" id="headingOne">
            <button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
                Accordion Item #1
            </button>
        </h2>
        <div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
            <div class="accordion-body">
                <strong>This is the first item's accordion body.</strong> It is shown by default, until the collapse plugin adds the appropriate classes
            </div>
        </div>
    </div>
</div>

Button

Use the below to display Default Buttons:

Class Code Description Result
.pbmit-btn
<a class="pbmit-btn" href="#">
    <span class="pbmit-button-content-wrapper">
        <span class="pbmit-button-icon">
            <svg xmlns="http://www.w3.org/2000/svg" width="22.76" height="22.76" viewBox="0 0 22.76 22.76">
                <title>black-arrow</title>
                <path d="M22.34,1A14.67,14.67,0,0,1,12,5.3,14.6,14.6,0,0,1,6.08,4.06,14.68,14.68,0,0,1,1.59,1" 
                transform="translate(-0.29 -0.29)" fill="none" stroke="#000" stroke-width="2"></path>
                <path d="M22.34,1a14.67,14.67,0,0,0,0,20.75" transform="translate(-0.29 -0.29)" fill="none" 
                stroke="#000" stroke-width="2"></path>
                <path d="M22.34,1,1,22.34" transform="translate(-0.29 -0.29)" fill="none" stroke="#000" stroke-width="2"></path>
            </svg>
        </span>
        <span class="pbmit-button-text">Button</span>
    </span>
</a>
Button black-arrow Button
.pbmit-btn .pbmit-btn-outline
<a class="pbmit-btn pbmit-btn-outline" href="#">
    <span class="pbmit-button-content-wrapper">
        <span class="pbmit-button-icon">
            <svg xmlns="http://www.w3.org/2000/svg" width="22.76" height="22.76" viewBox="0 0 22.76 22.76">
                <title>black-arrow</title>
                <path d="M22.34,1A14.67,14.67,0,0,1,12,5.3,14.6,14.6,0,0,1,6.08,4.06,14.68,14.68,0,0,1,1.59,1" 
                transform="translate(-0.29 -0.29)" fill="none" stroke="#000" stroke-width="2"></path>
                <path d="M22.34,1a14.67,14.67,0,0,0,0,20.75" transform="translate(-0.29 -0.29)" fill="none" 
                stroke="#000" stroke-width="2"></path>
                <path d="M22.34,1,1,22.34" transform="translate(-0.29 -0.29)" fill="none" stroke="#000" stroke-width="2"></path>
            </svg>
        </span>
        <span class="pbmit-button-text">Button</span>
    </span>
</a>
Outline Button black-arrow Button

Counter

Use the below code to display Counter style:

Counter Style 1
<div class="pbminfotech-ele-fid-style-1">
    <div class="pbmit-fld-contents">
        <div class="pbmit-circle-outer completed" data-digit="87" data-fill="#000000" data-emptyfill="" data-before="" data-after="<span>%</span>" data-thickness="1" data-size="123">
            <div class="pbmit-circle"><canvas width="123" height="123"></canvas>
                <div class="pbmit-fid-inner">
                    <span class="pbmit-fid-before"></span>
                    <span class="pbmit-number-rotate numinate completed" data-appear-animation="animateDigits" data-from="0" data-to="87" data-interval="5" data-before="" data-before-style="" data-after="" data-after-style="">87</span>
                    <span class="pbmit-fid"><span>%</span></span>
                </div>
            </div>
        </div>
        <div class="pbmit-fid-sub">
            <h3 class="pbmit-fid-title">Clients <br>Satisfactions</h3>	
        </div>
    </div>
</div>
               
Counter Style 2
<div class="pbminfotech-ele-fid-style-2">
    <div class="pbmit-fld-contents">
        <div class="pbmit-fld-wrap">
            <h4 class="pbmit-fid-inner">
                <span class="pbmit-fid-before"><sup>*</sup></span>
                <span class="pbmit-number-rotate numinate completed" data-appear-animation="animateDigits" data-from="0" data-to="235" data-interval="5" data-before="" data-before-style="" data-after="" data-after-style="">235</span>
                <span class="pbmit-fid"><sup>+</sup></span>
            </h4>
        </div>
        <div class="pbmit-fid-icon-title">		
            <span class="pbmit-fid-title">Happy Customers</span>
        </div>
    </div>
    <div class="pbmit-sticky-corner pbmit-bottom-left-corner">
        <svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
            <path d="M30 30V0C30 16 16 30 0 30H30Z"></path>
        </svg>
    </div>
    <div class="pbmit-sticky-corner pbmit-top-right-corner">
        <svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
            <path d="M30 30V0C30 16 16 30 0 30H30Z"></path>
        </svg>
    </div>
</div>
			   
Counter Style 3
<div class="pbminfotech-ele-fid-style-3">
    <div class="pbmit-fld-contents">
        <div class="pbmit-circle-outer completed" data-digit="90" data-fill="#54bf66" data-emptyfill="" data-before="" data-after="<span>%</span>" data-thickness="2" data-size="131">
            <div class="pbmit-circle">
                <canvas width="131" height="131"></canvas>
                <div class="pbmit-fid-inner">
                    <span class="pbmit-fid-before"></span>
                    <span class="pbmit-number-rotate numinate completed" data-appear-animation="animateDigits" data-from="0" data-to="90" data-interval="5" data-before="" data-before-style="" data-after="" data-after-style="">90</span>
                    <span class="pbmit-fid"><span>%</span></span>
                </div>
            </div>
        </div>
        <div class="pbmit-fid-sub">
            <h3 class="pbmit-fid-title">Public <br>Speaking</h3>
        </div>
    </div>
</div>
			   
Counter Style 4
<div class="pbminfotech-ele-fid-style-4">
    <div class="pbmit-fld-contents">
        <div class="pbmit-circle-outer completed" data-digit="80" data-fill="#54bf66" data-emptyfill="#232323" data-before="" data-after="<sup>%</sup>" data-thickness="6" data-size="115">
            <div class="pbmit-circle"><canvas width="115" height="115"></canvas>
                <div class="pbmit-fid-inner">
                    <span class="pbmit-fid-before"></span>
                    <span class="pbmit-number-rotate numinate completed" data-appear-animation="animateDigits" data-from="0" data-to="80" data-interval="5" data-before="" data-before-style="" data-after="" data-after-style="">80</span>
                    <span class="pbmit-fid"><sup>%</sup></span>
                </div>
            </div>
        </div>
        <div class="pbmit-fid-sub">
            <h3 class="pbmit-fid-title">Charging stations installed worldwide.</h3>
        </div>
    </div>
</div> 
			   
Counter Style 5
<div class="pbminfotech-ele-fid-style-5">
    <div class="pbmit-fld-contents">
        <h4 class="pbmit-fid-inner">
            <span class="pbmit-fid-before"></span>
            <span class="pbmit-number-rotate numinate completed" data-appear-animation="animateDigits" data-from="0" data-to="500" data-interval="5" data-before="" data-before-style="" data-after="" data-after-style="">500</span>
            <span class="pbmit-fid"><sup>K</sup></span>
        </h4>
        <div class="pbmit-fid-icon-title">		
            <h3 class="pbmit-fid-title">Charging stations installed <br>worldwide.</h3>
        </div>
    </div>
</div>
               
Counter Style 6
<div class="pbminfotech-ele-fid-style-6">
    <div class="pbmit-fld-contents">
        <h4 class="pbmit-fid-inner">
            <span class="pbmit-fid-before"><span>#</span></span>
            <span class="pbmit-number-rotate numinate completed" data-appear-animation="animateDigits" data-from="0" data-to="1" data-interval="1" data-before="" data-before-style="" data-after="" data-after-style="">1</span>
            <span class="pbmit-fid"></span>
        </h4>
        <div class="pbmit-fid-icon-title">		
            <span class="pbmit-fid-title">top leader in worldwide<br> Saas industry</span>
        </div>
    </div>
</div>
               

Icon box

Use the below code to display Icon box style:

Icon box Style 1
<div class="pbmit-ihbox-style-1">
    <div class="pbmit-ihbox-headingicon">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-payment-method"></i>
                </div>
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">	
            <h2 class="pbmit-element-title">Charging Rooms</h2>		
            <div class="pbmit-heading-desc">EV charging station license-free for an individual</div>			
        </div>
    </div>
</div> 
                     
Icon box Style 2
<div class="pbmit-ihbox-style-2">
    <div class="pbmit-ihbox-contents">	
        <h2 class="pbmit-element-title">4.82</h2>	
        <div class="pbmit-icon-wrap">		
            <div class="pbmit-ihbox-icon">
                <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-image">
                    <img decoding="async" src="images/ihbox/rating-star.webp" alt="4.82" width="1719" height="261">
                </div>
            </div>		
            <h4 class="pbmit-element-subtitle">2488 Rating</h4>
        </div>
    </div>
    <div class="pbmit-content-wrap"></div>
</div>
                     
Icon box Style 3
<div class="pbmit-ihbox-style-3">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-image">
                <img src="images/homepage-2/ihbox/icon-img-01.png">
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">		
            <h2 class="pbmit-element-title">High quality charger</h2>
            <div class="pbmit-heading-desc">Charging stations is essential to greater adoption of Electric Vehicles</div>	
        </div>
    </div>
</div>
                     
Icon box Style 4
<div class="pbmit-ihbox-style-4">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-image">
                <img decoding="async" src="images/homepage-1/ihbox/icon-img-01.png">
            </div>
        </div>		
        <h2 class="pbmit-element-title">High Quality <br>Charger</h2>	
        <div class="pbmit-heading-desc">We offer smart, safe and innovative<br> charging solutions</div>	
    </div>
</div>
                     
Icon box Style 5
<div class="pbmit-ihbox-style-5">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-phone"></i>
                </div>
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">
            <div class="pbmit-heading-desc">Do you have any questions?</div>		
            <h2 class="pbmit-element-title">
                <a href="tel:1-800-222-000">
                    <span class="pbmit-button-text">1-800-222-000</span>
                    <span class="pbmit-button-icon-wrapper">
                        <span class="pbmit-button-icon">
                            <i class="pbmit-base-icon-black-arrow-1"></i>
                        </span>
                    </span>
                </a>
            </h2>	
        </div>
    </div>
</div>
                     
Icon box Style 6
<div class="pbmit-ihbox-style-6">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-check"></i>
                </div>
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">
            <h2 class="pbmit-element-title">Smart Charging <br>Features</h2>	
        </div>
    </div>
    <div class="pbmit-heading-desc">Smart charging aligns charging with other factors such as electricity prices and mobility needs</div>
</div>
					 
Icon box Style 7
<div class="pbmit-ihbox-style-7">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-contents">
            <div class="pbmit-title-wrap">
                <h2 class="pbmit-element-title">Home EV Charging</h2>
            </div>
        </div>
        <div class="pbmit-heading-desc">Our wide range of solutions for EV Charging Station Business, Franchise in India.</div>	
    </div>
</div>
					 
Icon box Style 8
<div class="pbmit-ihbox-style-8">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-contents">
            <div class="pbmit-ihbox-btn">
                <a href="#">
                    <span class="pbmit-button-text">Get Started</span>
                    <span class="pbmit-button-icon-wrapper">
                        <span class="pbmit-button-icon">
                            <i class="pbmit-base-icon-black-arrow-1"></i>
                        </span>
                    </span>
                </a>
            </div>		
            <h4 class="pbmit-element-subtitle">or Call </h4>
            <h2 class="pbmit-element-title">
                <a href="tel:03504-687-212">
                    <span class="pbmit-button-text">03504 687 212</span>
                    <span class="pbmit-button-icon-wrapper">
                        <span class="pbmit-button-icon">
                            <i class="pbmit-base-icon-black-arrow-1"></i>
                        </span>
                    </span>
                </a>
            </h2>	
        </div>
    </div>
</div>
					 
Icon box Style 9
<div class="pbmit-ihbox pbmit-ihbox-style-9">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-apple"></i>
                </div>
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">
            <div class="pbmit-heading-desc">Download on the </div>		
            <h2 class="pbmit-element-title">
                <a href="#">
                    <span class="pbmit-button-text">App Store</span>
                    <span class="pbmit-button-icon-wrapper">
                        <span class="pbmit-button-icon">
                            <i class="pbmit-base-icon-black-arrow-1"></i>
                        </span>
                    </span>
                </a>
            </h2>	
        </div>
    </div>
</div>
					 
Icon box Style 10
<article class="pbmit-miconheading-style-10">
    <div class="pbmit-ihbox pbmit-ihbox-style-10">
        <div class="pbmit-ihbox-box">
            <div class="pbmit-ihbox-icon">
                <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-text">01</div>
            </div>	
            <div class="pbmit-ihbox-contents">
                <h2 class="pbmit-element-title">Requirements check</h2>
                <div class="pbmit-heading-desc">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium laudantium.</div>			
            </div>
        </div>						
    </div>
</article>
                     
Icon box Style 11
<div class="pbmit-ihbox-style-11">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-contents">
            <h2 class="pbmit-element-title">2018 - 2019</h2>		
            <h4 class="pbmit-element-subtitle">EVSE Manufactures Award</h4>
        </div>
    </div>
</div>
					 
Icon box Style 12
<div class="pbmit-ihbox-style-12">
    <div class="pbmit-ihbox-headingicon">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-renewable-energy"></i>
                </div>
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">
            <h2 class="pbmit-element-title">How outgrid Transformed Our Business.</h2>		
            <div class="pbmit-ihbox-btn">
                <a href="#">
                    <span class="pbmit-button-text">Read Case Study</span>
                    <span class="pbmit-button-icon-wrapper">
                        <span class="pbmit-button-icon">
                            <i class="pbmit-base-icon-black-arrow-1"></i>
                        </span>
                    </span>
                </a>
            </div>
        </div>
    </div>
</div>
					 
Icon box Style 13
<div class="pbmit-ihbox-style-13">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-quote-left"></i>
                </div>
            </div>
        </div>	
        <div class="pbmit-ihbox-contents">
            <h2 class="pbmit-element-title">“Enabling global enterprises to better manage information the power innovation Quality It is 
            a long established fact that a reader will be distracted”</h2>		
            <h4 class="pbmit-element-subtitle">Monika Valdom</h4>
        </div>
    </div>
</div>
					 
Icon box Style 14
<div class="pbmit-ihbox-style-14">
    <div class="pbmit-ihbox-headingicon">
        <h4 class="pbmit-element-subtitle">Why Evcharge</h4>			
        <div class="pbmit-ihbox-contents">
            <h2 class="pbmit-element-title">Scalable Charging Solutions that<br> Grows with you.</h2>		
        </div>
    </div>
</div>
					 
Icon box Style 15
<div class="pbmit-ihbox pbmit-ihbox-style-15">
    <div class="pbmit-ihbox-box">
        <div class="pbmit-ihbox-contents">
            <div class="pbmit-heading-desc">Have questions? </div>				
            <h2 class="pbmit-element-title">
                <a href="mailto:[email protected]">
                    <span class="pbmit-button-text">[email protected]</span>
                    <span class="pbmit-button-icon-wrapper">
                        <span class="pbmit-button-icon">
                            <i class="pbmit-base-icon-black-arrow-1"></i>
                        </span>
                    </span>
                </a>
            </h2>	
        </div>
        <div class="pbmit-ihbox-icon">
            <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-icon">
                <div class="pbmit-icon-wrapper pbmit-icon-type-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-ev"></i>
                </div>
            </div>
        </div>
    </div>
</div>
					 
Icon box Style 16
<div class="pbmit-ihbox pbmit-ihbox-style-16">
    <div class="pbmit-ihbox-icon">
        <div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-image">
            <img src="images/ihbox/icon-box-img-01.jpg" class="img-fluid" alt="">
        </div>
    </div>
    <div class="pbmit-ihbox-contents">
        <h2 class="pbmit-element-title">Ch</h2>		
        <div class="pbmit-heading-desc">701 Sondanella, 18th floor, <br>Gunsberg, Switzerland</div>	
        <h4 class="pbmit-element-subtitle">			
            <ul>
                <li>
                    <span>Email :</span>
                    [email protected]
                </li>
                <li>
                    <span>Phone :</span>
                    +0 123 456 7891
                </li>
            </ul>			
        </h4>			
        <div class="pbmit-ihbox-btn">
            <a href="#">
                <span class="pbmit-button-text">View on google map</span>
                <span class="pbmit-button-icon-wrapper">
                    <span class="pbmit-button-icon">
                        <i class="pbmit-base-icon-black-arrow-1"></i>
                    </span>
                </span>
            </a>
        </div>
    </div>
</div>
					 

Service Box

Use the below code to display Service Box style:

Service Box Style 1
<article class="pbmit-service-style-1">
    <div class="pbminfotech-post-item">
        <div class="pbmit-box-content-wrap">
            <div class="pbmit-box-content-inner">
                <div class="pbmit-content-box">
                    <div class="pbmit-serv-cat">
                        <a href="#" rel="tag">Charging</a>
                    </div>
                    <h3 class="pbmit-service-title">
                        <a href="#">Home Charging</a>
                    </h3>
                    <div class="pbmit-service-description">
                        <p>Home is Most popular location to charge an EV, with more than 64% of current EV</p>
                    </div>
                    <div class="pbmit-service-icon">
                        <i class="pbmit-evgrid-icon pbmit-evgrid-icon-charging-station"></i>
                    </div>
                </div>
            </div>
            <a class="pbmit-service-btn" href="#" title="Home Charging">
                <span class="pbmit-button-icon-wrapper">
                    <span class="pbmit-button-icon">
                    <i class="pbmit-base-icon-black-arrow-1"></i>
                    </span>
                </span>
            </a>
        </div>
        <a href="#"></a>
    </div>
</article>
                     
Service Box Style 2
<article class="pbmit-service-style-2">
    <div class="pbminfotech-post-item">
        <div class="pbminfotech-box-content">
            <div class="pbmit-service-image-wrapper">
                <div class="pbmit-featured-img-wrapper">
                    <div class="pbmit-featured-wrapper">
                        <img src="images/homepage-1/service/service-img-01.jpg">
                    </div>
                </div>
                <svg xmlns="http://www.w3.org/2000/svg" width="119.09" height="112.42" viewBox="0 0 119.09 112.42">
                    <path d="M.05,110.13a85.42,85.42,0,0,0,20.78-2c12.23-2.83,20.86-9.88,25.28-21.69,2.55-6.82,4.71-13.79,7.13-20.66C57,55,64.39,48,75.55,
                    45.07c5-1.31,9.92-2.7,14.82-4.26,17.66-5.65,25.37-15.63,26.55-34.2.14-2.16.09-4.32.13-6.48,2.5-.63,2,1.17,2,2.5q0,17.75,0,35.5v74q-57.75,
                    0-115.5-.07C2.34,112.05-.42,113.66.05,110.13Z"></path>
                </svg>
            </div>
            <div class="pbmit-service-icon">
                <i class="pbmit-evgrid-icon pbmit-evgrid-icon-charging-station"></i>
            </div>
            <div class="pbmit-content-box">
                <div class="pbmit-serv-cat">
                    <a href="#" rel="tag">Charging</a>
                </div>
                <h3 class="pbmit-service-title">
                    <a href="#">Home Charging</a>
                </h3>
                <div class="pbmit-service-description">
                    <p>Home is Most popular location to charge an EV, with more than 64% of current EV</p>
                </div>
            </div>
        </div>
        <a class="pbmit-service-btn" href="#" title="Home Charging">
            <span class="pbmit-button-icon-wrapper">
                <span class="pbmit-button-icon">
                    <i class="pbmit-base-icon-black-arrow-1"></i>
                </span>
            </span>
        </a>
    </div>
    <a class="pbmit-link" href="#"></a>
</article>
                     
Service Box Style 3
<article class="pbmit-service-style-3">
    <div class="pbminfotech-post-item">
        <div class="pbminfotech-box-content">
            <div class="pbmit-service-image-wrapper">
                <div class="pbmit-bg-image" style="background-image: url(images/homepage-2/service/service-img-01.jpg);">
                    <div class="pbmit-featured-img-wrapper">
                        <div class="pbmit-featured-wrapper">
                            <img src="images/homepage-2/service/service-img-01.jpg">
                        </div>
                    </div>			
                </div>
                <a class="pbmit-link" href="#"></a>
            </div>
            <div class="pbmit-content-box">
                <div class="pbmit-service-icon">
                    <i class="pbmit-evgrid-icon pbmit-evgrid-icon-charging-station"></i>
                </div>
                <div class="pbmit-serv-cat">
                    <a href="#" rel="tag">Charging</a>
                </div>
                <h3 class="pbmit-service-title">
                    <a href="#">Home Charging</a>
                </h3>
                <div class="pbmit-service-desc">
                    <p>Home is Most popular location to charge an EV, with more than 64% of current EV</p>
                </div>			
            </div>
        </div>
    </div>
</article>
					 

Progress Bar

Use the below code to display Progress Bar style:

<div class="progressbar">
   <span class="progress-label">Biotechnology</span>
      <div class="progress progress-lg progress-percent-bg">
         <div class="progress-bar aos aos-init aos-animate" data-aos="slide-right" data-aos-delay="200" data-aos-duration="1000"
            data-aos-easing="ease-in-out" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
         <span class="progress-percent">80%</span>
      </div>
   </div>
</div>

Team

Use the below code to display Team:.

Team Style 1
<article class="pbmit-team-style-1 col-md-6 col-lg-3 ">
    <div class="pbminfotech-post-item">
        <div class="pbmit-featured-wrap">
            <div class="pbmit-featured-inner">
                <div class="pbmit-featured-img-wrapper">
                    <div class="pbmit-featured-wrapper">
                        <img src="images/team/team-01.webp" alt="">
                    </div>
                </div>			
                <a class="#" href="#"></a>
            </div>
            <div class="pbmit-team-btn">
                <a class="pbmit-team-text" href="#">
                    <i class="pbmit-base-icon-share-2"></i>
                </a>
                <div class="pbminfotech-box-social-links">
                    <ul class="pbmit-social-links pbmit-team-social-links">
                        <li class="pbmit-social-li pbmit-social-facebook">
                            <a href="#" title="Facebook" target="_blank">
                                <span>
                                    <i class=" pbmit-base-icon-facebook-app-symbol"></i>
                                </span>
                            </a>
                        </li>
                        <li class="pbmit-social-li pbmit-social-twitter">
                            <a href="#" title="Twitter" target="_blank">
                                <span>
                                    <i class="pbmit-base-icon-twitter-2"></i>
                                </span>
                            </a>
                        </li>
                        <li class="pbmit-social-li pbmit-social-instagram">
                            <a href="#" title="Instagram" target="_blank">
                                <span><i class="pbmit-base-icon-instagram"></i></span>
                            </a>
                        </li>
                        <li class="pbmit-social-li pbmit-social-youtube">
                            <a href="#" title="Youtube" target="_blank">
                                <span><i class="pbmit-base-icon-youtube-play"></i></span>
                            </a>
                        </li>
                    </ul>			
                </div>
            </div>
        </div>
        <div class="pbminfotech-box-content">
            <div class="pbminfotech-box-content-inner">
                <div class="pbminfotech-box-team-position">Founder</div>
                <h3 class="pbmit-team-title">
                    <a href="#">Jane Brown</a>
                </h3>
            </div>
        </div>
    </div>
</article>
                     
Team Style 2
<article class="pbmit-team-style-2 col-md-6">
    <div class="pbminfotech-post-item">
        <div class="pbmit-featured-wrap">
            <div class="pbmit-featured-inner">
                <div class="pbmit-featured-img-wrapper">
                    <div class="pbmit-featured-wrapper">
                        <img src="images/homepage-3/team/team-01.jpg" class="attachment-pbmit-img-670x830 size-pbmit-img-670x830 wp-post-image">
                    </div>
                </div>		
            </div>
            <div class="pbmit-team-btn">
                <a class="pbmit-team-text" href="#">
                    <i class=" pbmit-base-icon-share-2"></i>
                </a>
                <div class="pbminfotech-box-social-links">
                    <ul class="pbmit-social-links pbmit-team-social-links">
                        <li class="pbmit-social-li pbmit-social-facebook">
                            <a href="#" title="Facebook" target="_blank">
                                <span>
                                    <i class=" pbmit-base-icon-facebook-app-symbol"></i>
                                </span>
                            </a>
                        </li>
                        <li class="pbmit-social-li pbmit-social-twitter">
                            <a href="#" title="Twitter" target="_blank">
                                <span>
                                    <i class="pbmit-base-icon-twitter-2"></i>
                                </span>
                            </a>
                        </li>
                        <li class="pbmit-social-li pbmit-social-instagram">
                            <a href="#" title="Instagram" target="_blank">
                                <span>
                                    <i class="pbmit-base-icon-instagram"></i>
                                </span>
                            </a>
                        </li>
                        <li class="pbmit-social-li pbmit-social-youtube">
                            <a href="#" title="Youtube" target="_blank">
                                <span>
                                    <i class="pbmit-base-icon-youtube-play"></i>
                                </span>
                            </a>
                        </li>
                    </ul>			
                </div>
            </div>
        </div>
        <div class="pbminfotech-box-content">
            <div class="pbminfotech-box-content-inner">
                <div class="pbminfotech-box-team-position">Founder</div>
                <h3 class="pbmit-team-title">
                    <a href="team-member-details.html">Jane Brown</a>
                </h3>
            </div>
        </div>
    </div>
</article>
    				 

Testimonial

Use the below code to display Testimonial:.

Testimonial Style 1
<article class="pbmit-testimonial-style-1">
    <div class="pbminfotech-post-item">
        <div class="pbminfotech-post-inner d-flex align-items-center">
            <div class="pbminfotech-box-author">
                <h3 class="pbminfotech-box-title">Hazel Jenkins</h3>
                <div class="pbminfotech-testimonial-detail">Ceo & Founder</div>
            </div>
            <div class="pbmit-box-content-wrap">
                <div class="pbminfotech-box-star-ratings">
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                </div>
                <div class="pbminfotech-box-desc">
                    <blockquote class="pbminfotech-testimonial-text">
                        <p>“I would recommend practitioners at this center to everyone! They are great to work with and are excellent”</p>
                    </blockquote>
                </div>
            </div>
        </div>
        <svg xmlns="http://www.w3.org/2000/svg" width="111.45" height="105.95" viewBox="0 0 111.45 105.95">testimonial-shape-01</svg>
    </div>
</article>
                     
Testimonial Style 2
<article class="pbmit-testimonial-style-2">
    <div class="pbminfotech-post-item">
        <div class="pbminfotech-box-content">
            <div class="pbminfotech-box-content-inner">
                <div class="pbminfotech-box-star-ratings">
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                    <i class="pbmit-base-icon-star-1 pbmit-active"></i>
                </div>			
                <blockquote class="pbminfotech-testimonial-text">
                    <p>“Passages of Lorem Ipsum available, but the majority have suffered alteration in some form, 
                    by injected humour, or randomised words which evenhtly believable.</p>
                </blockquote>
                <div class="pbminfotech-box-author">
                    <h3 class="pbminfotech-box-title">Hazel Jenkins</h3>
                    <div class="pbminfotech-testimonial-detail">Ceo & Founder</div>
                </div>
            </div>
            <svg xmlns="http://www.w3.org/2000/svg" width="110.26" height="119.26" viewBox="0 0 110.26 119.26"></svg>
        </div>
    </div>
</article>
                  

Contact Form Setup

You can make the contact form working easily. You should know some basics for PHP coding and SMTP basic knowledge. Follow the steps given below to send email from the PHP script:

Prerequisites

You need SMTP details to set the script. There are two ways to get SMTP

  1. Get SMTP from your hosting service provider
  2. Get SMTP from your Gmail account

1. Get SMTP from your hosting service provider

If you have server with email server and want to use your domain email address then you can get SMTP login details from your hosting directly. Please contact your hosting service provider and they will send you SMTP login details.


2. Get SMTP from your Gmail account

There are some settings need to be done in your Gmail account to get SMTP details and make it working. Please follow steps given on this page

netcorecloud.com/tutorials/send-an-email-via-gmail-smtp-server-using-php


Setting SMTP details in send.php script file

Open send.php file and edit as described below:

  • Set SMTP details in the file in the SMTP Email Settings section (line number 7 to 18).
  • If you added more fields in the Contact form, then you need to edit Form fields you want to receive in email section (line number 25 to 50).

That's all you need to setup. This will send email with all form data.

If you have any quesiton or confusion, then please create a ticket on our support site so our team will guide you properly on this.

Browser Support

Hectolab supports all major Browsers like Google Chrome, Mozilla Firefox, Safari, Opera, Internet Explorer 10 and above.

How to rate this item

If you like our theme and support, Please do not forget to rate it with 5 stars in your Downloads section and write a review in Comments as it will add more value to our services!

Kindly visit here: https://themeforest.net/downloads and find "Rate this item" below the download button and rate out the theme.

Advance Thanks in Anticipation!

Source & Credits

All images and videos are for preview purposes only and are not included in the download files. Images are of copyrights under Creative Commons CC0.


Images



Scripts



CSS & Fonts



Note For questions on basic HTML, Javascript or CSS editing - please give your question a quick Google or visit W3Schools as template issues get top priority. You will need some knowledge of HTML/CSS to edit the template.