Elton - Electrician Services HTML Template

Created : 10/02/2024
By : Udayraj
Support : udayraj.web@gmail.com

Thank you for purchasing Elton - Electrician Services HTML Template . If you have any questions that are beyond the scope of this help file, please feel free to email, via my user page contact form or put a ticket at Support Center .
Thankyou so much!

Template Features

  • Clean & Simple Design
  • Advance Bootstrap 5.x Framework
  • HTML5 & CSS3
  • CSS3 Animations
  • Fully Responsive Design
  • All files are well commented
  • Crossbrowser Compatible with IE10+, Firefox, Safari, Opera, Chrome
  • Extensive Documentation

HTML Structure


The html template uses Latest Bootstrap v5 with valid HTML5 tags. This theme is a responisve layout with 4 column Support column. All of the information in content area is nested within a class and comes with predefined classes.

Basic Grid HTML

For a simple two column layout, create a .container and add the appropriate number of .col-md* columns.

Given this example, we have .col-md-4 and .col-md-8, making for 12 total columns and a complete row.

<div class="container">
    <div class="col-md-4">...</div>
    <div class="col-md-8">...</div>
</div>

Nesting Columns

To nest your content with the default grid, add a new .container and set of .col-md* columns within an existing .col-md* column. Nested rows should include a set of columns that add up to the number of columns of its parent.

<div class="container">
    <div> class="col-md-9">
        Level 1 column
        <div> class="row">
            <div> class="col-md-8">Level 2</div>
            <div> class="col-md-4">Level 2</div>
        </div>
    </div>
    <div> class="col-md-3">
        Level 2 column
    </div>
</div>

CSS Files and Structure


Mainly three main CSS files are used in this theme. The first one bootstrap.css, second one is ambed.css which for this template and third one is ambed-responsive.css to control responsive layouts.

If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.

These are the css files that are loaded into templates in top of head of html file labled as link css.

<link rel="stylesheet" href="assets/vendors/bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" href="assets/vendors/fontawesome/css/all.min.css" />
<link rel="stylesheet" href="assets/vendors/animate/animate.min.css" />
<link rel="stylesheet" href="assets/vendors/youtube-popup/youtube-popup.css" />
<link rel="stylesheet" href="assets/vendors/icomoon/style.css" />
<link rel="stylesheet" href="assets/vendors/owl-carousel/owl.carousel.min.css" />
<link rel="stylesheet" href="assets/vendors/owl-carousel/owl.theme.default.min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/responsive.css" />

Fonts

By default, the template loads this font from Google Web Font Services, you can change the font with the one that suits you best.

Jquery and javascript


This theme imports three types of Javascript files.

  • jQuery
  • Custom scripts (custom.js)
  • Some plugins
  • jQuery is a Javascript library that greatly reduces the amount of code that you must write.
  • Most of the animation in this site is carried out from the customs scripts. There are a few functions worth looking over.

In addition to the custom scripts, I have implemented few "tried and true" plugins to create the effects. This plugin is packed, so you won't need to manually edit anything in the file. The only necessary thing to know is how to call the method

These are the JS files that are loaded into templates in end of the Body Section.

<script src="assets/vendors/jquery/jquery-3.6.0.min.js"></script>
<script src="assets/vendors/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendors/owl-carousel/owl.carousel.min.js"></script>
<script src="assets/vendors/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendors/wow/wow.js"></script>
<script src="assets/vendors/youtube-popup/youtube-popup.jquery.js"></script>
<script src="assets/js/script.js"></script>

Google Map Settings


We used embed google map with ifram to get your map iframe code go to Google Map Then search your desire location See screenshot below

After That click to Location name and click on share see screenshot below

Then Click on Embed a map & copy the HTML

Contact Form Settings


We have added an attractive and fully functional contact form. You need to update the recipient name and email address.

You can change recipient name and email address in sendemail.php You can locate this file in inc folder

Tutorial


LOGO

Lets start updating the template. Open index.html file and follow the steps.

Most of the updates are same for all pages. So will explain once here.

<div class="main-menu-logo">
    <a href="index.html">
        <img src="assets/images/resources/logo.png" alt="header-logo">
    </a>
</div>

Replace "images/logo.png" with your logo image url source or website name .

NAVMENU

This is the basic structure.


<nav class="main-menu">
    <ul class="main-menu-list">
        <li class="menu-item-children">
            <a href="#">Home </a>
            <ul>
                <li><a href="index.html">Home One</a></li>
                <li><a href="index2.html">Home Two</a></li>
                <li><a href="index3.html">Home Three</a></li>
            </ul>
        </li>
        <li class="menu-item-children">
            <a href="#">Pages</a>
            <ul>
                <li><a href="about.html">About Us</a></li>
                <li><a href="calculator.html">Estimation Calculator</a></li>
                <li><a href="pricing.html">Pricings</a></li>
                <li class="menu-item-children"><a href="#">Team<i class="fa fa-angle-down"></i></a>
                    <ul class="sub-menu-inner">
                        <li><a href="team.html">Team Member</a></li>
                        <li><a href="team-details.html">Team Details</a></li>
                    </ul>
                </li>
            </ul>
        </li>
        <li class="menu-item-children">
            <a href="#">Services</a>
            <ul>
                <li><a href="services.html">Services List</a></li>
                <li><a href="services-details.html">Services Details</a></li>
            </ul>
        </li>
        <li class="menu-item-children">
            <a href="#">Blog</a>
            <ul>
                <li><a href="blog.html">Blog List</a></li>
                <li><a href="blog-grid.html">Blog Grid</a></li>
                <li><a href="blog-details.html">Blog Details</a></li>
            </ul>
        </li>
        <li><a href="contact.html">Contact Us</a></li>
    </ul>
</nav><!-- /.navbar-collapse -->

Add your own menu item to that ul li item. and if you want to add dropdown menu just make a nesting ul li with class of sub-menu

FOOTER COPYRIGHT

<div class="footer-bottom">
    <div class="container">
        
        <div class="footer-bottom-inner">
            
            <div class="footer-bottom-copyright">
                <p>Copyright © 2024,
                    <a href="#">Elton</a> All Rights Reserved
                </p>
            </div>
        </div>
    </div>
</div>

replace "© Copyright Elton 2024 . All right reserved." with the copyright info.

Sources and Credits


Fonts Used int the template are google fonts, you can find theme on Google Fonts API

Fonts Used are :

Manrope

Inter


File Used For Animation Effects :

animate.css (in css Folder)

wow.js (in js Folder)


Sliders Used Are :

swiper

Owl Carousel

Swiper


Plugins Used Are :

Youtube Popup (can be located in js folder)

jQuery Validation (can be located in js folder)

Bootstrap Select (can be located in js folder)

FontAwesome Icons (can be located in plugins folder)

Every Code is properly commented for Editing Ease.

Support


Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme. No guarantees, but I'll do my best to assist. If you have any queries, please feel free to contact us at Support Center.

Contact Us at : udayraj.web@gmail.com