Introduction
Author: Potenza Global Solutions
This documentation will give you an understanding of how the Hi-soft template is structured and guide you in performing common functions.
Notes:
- We will not respond to any support questions on the Item comment section or through e-mail. If this document doesn’t answer your questions feel free to open up a private ticket in our support forum
- 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 basic knowledge of HTML/CSS to edit the template.
- For customization service contact us at our support forum
Installation
Follow the steps below to get started with your Site Template:
- Open the
... /template
Folder to find all the Templates Files - You will need to Upload these files to your Web Server using FTP (We suggest Filezilla) to use it on your Website.
- Make sure you upload the required files/folders listed below:
template/css
– Stylesheets Foldertemplate/fonts
– Fonts Foldertemplate/images
– Images Foldertemplate/js
– Java Scripts Foldertemplate/scss
– All SCSS Filestemplate/index.html
– Main home filetemplate/.....
– All HTML files
The other files can be used according to your preferences.
- You’re now good to go..! Start editing your site and show off your Brand New Website with proud.
Note: For correct operation of all functions of the template, including Popup video and Contact forms, you must upload the template to the web-server.
Basic template Structure
The template has a responsive layout and is based on the Bootstrap 4 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
Here is the general HTML structure of the template:
<!DOCTYPE html> <html lang="en"> <head> [Page meta, page css, page title etc...] </head> <body> <!--header --> <header class="header default"> <div class="topbar"> [TOPBAR CONTENT] </div> <nav class="navbar bg-white navbar-static-top navbar-expand-lg"> [MENU CONTENT] </nav> </header> <!--header --> <!-- Banner --> <section class="banner"> [BANNER CONTENT] </section> <!-- Banner --> <!--Service --> <section class="space-ptb"> [SECTION 1 CONTENT] </section> <!--Service --> <!--Section --> <section class="space-ptb"> [SECTION 2 CONTENT] </section> <!--Section --> <!--footer --> <footer class="footer footer-01 bg-dark"> [FOOTER_CONTENT] </footer> <!--footer --> <!--Javascript --> [PAGE JAVASCRIPTS HERE] </body> </html>
CSS Structure
Here is the general CSS structure of the template:
<!-- CSS Global Compulsory (Do not remove)--> <link rel="stylesheet" href="css/font-awesome/all.min.css" /> <link rel="stylesheet" href="css/flaticon/flaticon.css" /> <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" /> <!-- Page CSS Implementing Plugins (Remove the plugin CSS here if site does not use that feature)--> <link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css" /> <link rel="stylesheet" href="css/swiper/swiper.min.css" /> <link rel="stylesheet" href="css/animate/animate.min.css"/> <link rel="stylesheet" href="css/magnific-popup/magnific-popup.css" /> <!-- Template Style --> <link rel="stylesheet" href="css/style.css" />
- all.min.css: This is a Font-awesome CSS.
- flaticon.css: This is a Flaticon font icon CSS.
- bootstrap.min.css: This is a Bootstrap 4 CSS file. You must need this file. Do not remove this.
- owl.carousel.min.css: This is an owl carousel plugins CSS.
- swiper.min.css: This is a swiper slider plugins CSS.
- animate.min.css: This is a animate animation plugins CSS.
- magnific-popup.css: This is a magnific popup plugins CSS.
- style.css: This is a main stylesheet of the template, This file contains the styling for the actual Template.
Javascript Structure
Here is the general Javascript structure of the template:
<!-- JS Global Compulsory (Do not remove)--> <script src="js/jquery-3.4.1.min.js"></script> <script src="js/popper/popper.min.js"></script> <script src="js/bootstrap/bootstrap.min.js"></script> <!-- Page JS Implementing Plugins (Remove the plugin script here if site does not use that feature)--> <script src="js/jquery.appear.js"></script> <script src="js/swiper/swiper.min.js"></script> <script src="js/swiperanimation/SwiperAnimation.min.js"></script> <script src="js/counter/jquery.countTo.js"></script> <script src="js/owl-carousel/owl.carousel.min.js"></script> <script src="js/magnific-popup/jquery.magnific-popup.min.js"></script> <!-- Template Scripts (Do not remove)--> <script src="js/custom.js"></script>
- jquery.js: This is a JavaScript library file. You must need this file to run any javascript. Do not change or edit this file.
- popper.min.js: This is popper plugins file. Use to Tooltip. Do not change or edit this file.
- bootstrap.min.js: This is a bootstrap plugins file. Use to Bootstrap Library JavaScript. Do not change or edit this file.
- jquery.appear.js: This is appear plugins file. Do not change or edit this file.
- swiper.min.js: This is the swiper slider plugins file. Used for Banner Slider. Do not change or edit this file
- SwiperAnimation.min.js: This is the wiper slider animation plugin file. Used for Banner Slider animation. Do not change or edit this file
- jquery.countTo.js: This is the countTo plugins file. Usef for Count Number. Do not change or edit this file.
- owl-carousel.min.js: This is owl-carousel plugins file. Use for slider. Do not change or edit this file.
- jquery.magnific-popup.min.js: This is a magnific-popup plugins file. Used for images popup and popup slider. Do not change or edit this file.
- custom.js: This File includes all small scripts from the template. All script has commented code so you can easily remove unnecessary code from this file. Make sure you remove/add proper files before you remove or add anything in this file.
Compiling SCSS
Overview
SCSS is perhaps the most popular of the CSS pre-processors; for years it’s helped us write clean, reusable and modular CSS. In this quick tutorial, I’ll cut straight to the stuff that matters and explain how to compile Sass into CSS using the command line.
Install Node.js
To compile Sass via the command line, first, we need to install node.js. Download it from the official website nodejs.org, open the package and follow the wizard.
Gulp
Gulp is the task manager that is used to automate the task for easy development. Template is divided into different parts for which different gulp task is created.
1. If you have not installed gulp globally then please it using the below command.
npm install gulp-cli -g
2. Now install all the dependencies required for the project go inside the folder where /gulpfile.js
located and run below command.
npm install
This will install all the dependencies from the package manager.
3. Run the project using below command this will process all the scss files and js files and will auto start the browser.
gulp
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. There are many online favicon icon generators to generate .ico
file. You can also use .png
file
You can add a Favicon to your Website using the following code:
<link rel="shortcut icon" href="images/favicon.ico" />
Logo Settings
The Logo can be found in the Header – .header
. Replace "logo.svg"
with your own logo image.
<a class="navbar-brand" href="index.html"> <img class="img-fluid" src="images/logo.svg" alt="logo"> </a>
How to change logo height?
You can set the height according to your logo type and your requirement.
CSS
To set logo height open css/style.css
file and change height value in .navbar-brand img
class, default value of logo height is 40px.
For responsive logo height open css/style.css
file and change height value in .navbar-brand img
class in the 991 media query, the default value of logo height in responsive is 40px.
SCSS
To set logo height open scss/header.scss
file and change height value in .navbar-brand img
class, default value of logo height is 40px.
For responsive logo height open scss/responsive.scss
file and change height value in .navbar-brand img
class in the 991 media query, the default value of logo height in responsive is 40px.
If you change logo height then header height will automatically increase and the menu will set vertically center.
Color Schemes
You can change your Website’s Color Scheme in an instant. There are 2 super easy options to change your website color.
1. CSS method: If you want to change the color go to (css/style.css)
and Replace primary color HEX code with your color HEX code. Default color HEX code is #ef3139
2. SCSS method: If you want to change the color go to (scss/variables.scss)
and change color HEX codes as per your needs.
$body-color: #666666; (ex: change color code #f5f5f5 ) $primary: #ef3139; $white: #ffffff;
Changing Fonts
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 code in the head
a tag of all HTML files:
<!-- font --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Archivo:400,500,600,700&display=swap">
To include a new font you can simply add another line like this:
<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i" rel="stylesheet">
Or add an |
separator and paste Roboto:400,300,800,700,600
after default website fonts link.
CSS
Now open css/style.css
and change your font family with the current.
To change the fonts, you will need to edit the above links with your custom font, 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
SCSS
Now open scss/variables.scss
and change your font family with the current.
To change the fonts, you will need to edit the above links with your custom font, 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
@import url('https://fonts.googleapis.com/css?family=Archivo:400,500,600,700&display=swap'); // Font Variables $font-base: 'Archivo', sans-serif; $font-heading: 'Archivo', sans-serif; // Styles body { font-family: $font-base; font-weight: normal; }
Flat icon
You can place flat Icon just about anywhere using the icon's class name. Flat icon is designed to be used with inline elements we like the < i > tag for brevity. See example below:
<i class="flaticon-hiring"></i>
We have included our flat icon collection with download package under Documentation folder in "my-icon-collection" folder. If you want to update or include any flat icon font follow this two super easy steps:
1. Open flaticon.html from my-icon-collection folder in the browser (We suggest google chrome).
2. Copy class name from below font icon and past it in < i > tag. That's it! See example below:
<i class="flaticon-hiring"></i>
Sticky header
When you scroll down, the Sticky Header “sticks” to the top of the window.
To enable the sticky header, you need to add header-sticky
class in nav tag of all html files. Please see below code example:
<header class="header default header-sticky"> </header>
Page section padding
You can add this helper class to set section padding top 100px
and padding bottom 100px
.
Add space-ptb
class in section
tag. See example below:
<section class="... space-ptb"> [YOUR CONTENT] </section>
Note Use this helper class to maintain all page section spacing. You can also use space-pt
for only padding top and space-pb
for only padding bottom.
Text color
You can use color in the Text. simply add text-primary
class where you want to apply green (theme color) color. See example below:
<div class="text-primary"> [YOUR TEXT CONTENT] </div>
Note We followed bootstrap helper class in our template. So you can use any bootstrap helper classes in our template as per your need. For text color, you can use bootstrap color helper classes
Background color
To use background color simply add bg-primary
class where you want to apply green (theme bg color) color. See example below:
<div class="bg-primary"> [YOUR TEXT CONTENT] </div>
Note We followed bootstrap helper class in our template. So you can use any bootstrap helper classes in our template as per your need. For background color, you can use bootstrap Background color helper classes
Background Images
You can use an image in the background with parallax effect with simply add InlineStyle
in any tag and by use of this you can create your own bg. See example below:
<div style="background-image:url(Path); "> [YOUR CONTENT] </div>
If you want to use your background like cover or cointainer so, you just add styling property background-size
and set the value cover
or cointainer
. see the example below:
<div style="background-image:url(Path); background-size:cover;"> [YOUR CONTENT] </div>
Background parallax
You can use an image in the background with parallax effect with simply add Inline Data
See example below:
<section class="bg-holder" data-jarallax='{"speed": 0.6}' style="background-image:url(Path)"> </section>
Note You must need bg-holder
class to set background parallax. With data-jarallax='{"speed": 0.6}
you can set parallax speed.
Background overlay
You can add bg-overlay-black-10
class to any element in your HTML code to apply overlay color on any image or any section. See example below:
<div class="bg-overlay-black-10"> [YOUR CONTENT] </div>
Here are some predefined overlay classes you can use:
Class | Description | Class | Description |
---|---|---|---|
bg-overlay-black-10 |
Apply black color overlay with 0.10 overlay | bg-overlay-black-20 |
Apply black color overlay with 0.20 overlay |
bg-overlay-black-30 |
Apply black color overlay with 0.30 overlay | bg-overlay-black-40 |
Apply black color overlay with 0.40 overlay |
bg-overlay-black-50 |
Apply black color overlay with 0.50 overlay | bg-overlay-black-60 |
Apply black color overlay with 0.60 overlay |
bg-overlay-black-70 |
Apply black color overlay with 0.70 overlay | bg-overlay-black-80 |
Apply black color overlay with 0.80 overlay |
bg-overlay-black-90 |
Apply black color overlay with 0.90 overlay | ||
bg-overlay-white-10 |
Apply white color overlay with 0.10 overlay | bg-overlay-white-20 |
Apply white color overlay with 0.20 overlay |
bg-overlay-white-30 |
Apply white color overlay with 0.30 overlay | bg-overlay-white-40 |
Apply white color overlay with 0.40 overlay |
bg-overlay-white-50 |
Apply white color overlay with 0.50 overlay | bg-overlay-white-60 |
Apply white color overlay with 0.60 overlay |
bg-overlay-white-70 |
Apply white color overlay with 0.70 overlay | bg-overlay-white-80 |
Apply white color overlay with 0.80 overlay |
bg-overlay-white-90 |
Apply white color overlay with 0.90 overlay | ||
bg-overlay-theme-20 |
Apply theme color overlay with 0.20 overlay | bg-overlay-theme-50 |
Apply theme color overlay with 0.50 overlay |
bg-overlay-theme-70 |
Apply theme color overlay with 0.70 overlay | bg-overlay-theme-90 |
Apply theme color overlay with 0.90 overlay |
Note You can create your own helper classes by creating the class in the stylesheet as per your requirement. This helper class only support RGBA
color values.
Text align
You can add this helper class to any element in your HTML code to set text-align
Class | Description |
---|---|
text-left |
text-align: left; |
text-right |
text-align: right; |
text-center |
text-align: center; |
Label
You can add this helper class to any element in your HTML code to make a badge(lable). Simply add badge
and badge-danger
(or any class given below) class where you want to add a badge. See example below:
<span class="badge badge-danger">badge name</span>
Here are some default badges you can use or you can make your own badge as per your requirement.
Class | Description |
---|---|
badge-primary |
primary badge |
badge-secondary |
secondary badge |
badge-success |
Success badge |
badge-danger |
danger badge |
badge-warning |
Warning badge |
badge-info |
info badge |
badge-light |
light badge |
badge-dark |
dark badge |
Accordion
Use the below code to display accordion:
Accordion 01
<div class="accordion" id="career-opportunities"> <div class="card"> <div class="accordion-icon card-header" id="headingOne"> <h4 class="mb-0"> <button class="btn" type="button" data-toggle="collapse" data-target="#security-manager" aria-expanded="true" aria-controls="security-manager">[ Accordation Name ]</button> </h4> </div> <div id="security-manager" class="collapse show" aria-labelledby="headingOne" data-parent="#career-opportunities"> <div class="card-body"> [ Description ] </div> </div> </div> <div class="card"> <div class="accordion-icon card-header" id="headingTwo"> <h4 class="mb-0"> <button class="btn collapsed" type="button" data-toggle="collapse" data-target="#business-partner" aria-expanded="false" aria-controls="business-partner">[ Accordation Name ]</button> </h4> </div> <div id="business-partner" class="collapse" aria-labelledby="headingTwo" data-parent="#career-opportunities"> <div class="card-body"> [ Description ] </div> </div> </div> <div class="card"> <div class="accordion-icon card-header" id="headingThree"> <h4 class="mb-0"> <button class="btn collapsed" type="button" data-toggle="collapse" data-target="#outreach-representative" aria-expanded="false" aria-controls="outreach-representative">[ Accordation Name ]</button> </h4> </div> <div id="outreach-representative" class="collapse" aria-labelledby="headingThree" data-parent="#career-opportunities"> <div class="card-body"> [ Description ] </div> </div> </div> <div class="card"> <div class="accordion-icon card-header" id="headingFour"> <h4 class="mb-0"> <button class="btn collapsed" type="button" data-toggle="collapse" data-target="#salesforce-developer" aria-expanded="false" aria-controls="salesforce-developer">[ Accordation Name ]</button> </h4> </div> <div id="salesforce-developer" class="collapse" aria-labelledby="headingFour" data-parent="#career-opportunities"> <div class="card-body"> [ Description ] </div> </div> </div> <div class="card"> <div class="accordion-icon card-header" id="headingFive"> <h4 class="mb-0"> <button class="btn collapsed" type="button" data-toggle="collapse" data-target="#development-manager" aria-expanded="false" aria-controls="development-manager">[ Accordation Name ]</button> </h4> </div> <div id="development-manager" class="collapse" aria-labelledby="headingFive" data-parent="#career-opportunities"> <div class="card-body pb-0"> [ Description ] </div> </div> </div> </div>
Note Make sure you use unique IDs for each accordion Items and accordion content.
Counter
Use the below code to display Counter:
Counter 01
<div class="row"> <div class="col-sm-6 col-lg-3 mb-4 mb-lg-0"> <div class="counter"> <div class="counter-icon"> <i class="glyph-icon flaticon-smile"></i> </div> <div class="counter-content"> <span class="timer" data-to="1790" data-speed="10000">[ Your Counter Number ]</span> <label>[ YOUR TITLE ]</label> </div> </div> </div> <div class="col-sm-6 col-lg-3 mb-4 mb-lg-0"> <div class="counter"> <div class="counter-icon"> <i class="glyph-icon flaticon-award"></i> </div> <div class="counter-content align-self-center"> <span class="timer" data-to="245" data-speed="10000">[ Your Counter Number ]</span> <label>[ YOUR TITLE ]</label> </div> </div> </div> <div class="col-sm-6 col-lg-3 mb-4 mb-sm-0"> <div class="counter"> <div class="counter-icon"> <i class="glyph-icon flaticon-strong"></i> </div> <div class="counter-content"> <span class="timer" data-to="491" data-speed="10000">[ Your Counter Number ]</span> <label>[ YOUR TITLE ]</label> </div> </div> </div> <div class="col-sm-6 col-lg-3"> <div class="counter"> <div class="counter-icon"> <i class="glyph-icon flaticon-shout"></i> </div> <div class="counter-content"> <span class="timer" data-to="1090" data-speed="10000">[ Your Counter Number ]</span> <label>[ YOUR TITLE ]</label> </div> </div> </div> </div>
Counter 02
<div class="row justify-content-center"> <div class="col-md-3 col-sm-6"> <div class="counter justify-content-center text-center pt-0 pb-4 pb-md-0"> <div class="counter-content"> <span class="timer text-dark" data-to="11" data-speed="1000">[ Your Counter Number ]</span> <label class="text-dark">[ YOUR TITLE ]</label> </div> </div> </div> <div class="col-md-3 col-sm-6"> <div class="counter justify-content-center text-center pt-0 pb-4 pb-md-0"> <div class="counter-content"> <span class="timer text-dark" data-to="300" data-speed="10000">[ Your Counter Number ]</span> <label class="text-dark">[ YOUR TITLE ]</label> </div> </div> </div> <div class="col-md-3 col-sm-6"> <div class="counter justify-content-center text-center pt-0 pb-4 pb-sm-0"> <div class="counter-content"> <span class="timer text-dark" data-to="29" data-speed="1000">[ Your Counter Number ]</span> <label class="text-dark">[ YOUR TITLE ]</label> </div> </div> </div> <div class="col-md-3 col-sm-6"> <div class="counter justify-content-center text-center py-0"> <div class="counter-content"> <span class="timer text-dark" data-to="1090" data-speed="10000">[ Your Counter Number ]</span> <label class="text-dark">[ YOUR TITLE ]</label> </div> </div> </div> </div>
Countdown
You can add Countdown Timer to any Page. You can prefer to use Countdown Timer for “Coming Soon Page” or “Product Countdown Page”. Use below code to display countdown Timer:
Countdown 01
<div class="countdown-wrapper"> <div class="countdown bg-primary"> <span class="text-white days">00</span> <p class="text-white days_ref">days</p> </div> <div class="countdown bg-dark"> <span class="text-white hours">00</span> <p class="text-white hours_ref">hours</p> </div> <div class="countdown bg-white"> <span class="text-dark minutes">00</span> <p class="text-dark minutes_ref">minutes</p> </div> <div class="countdown countdown-last"> <span class="text-white seconds">00</span> <p class="text-white seconds_ref">seconds</p> </div> </div>
Also, update date in custom.js
file as per your requirement:
POTENZA.countdownTimer = function () { if ($countdownTimer.exists()) { $countdownTimer.downCount({ date: '12/25/2020 12:00:00', // Month/Date/Year HH:MM:SS offset: -4 }); } }
Note date: '12/25/2020 12:00:00'
is default date and time, you can change it as per your requirement
Testimonials
Use the below code to display testimonials:
Testimonial 01
<div class="testimonial text-center"> <div class="testimonial-item"> <div class="testimonial-avatar shadow"> <img class="img-fluid rounded-circle" src="images/avatar/01.jpg" alt=""> </div> <div class="testimonial-content"> <p>[ YOUR CONTENT </p> </div> <div class="testimonial-author"> <div class="testimonial-name"> <h6 class="mb-1">Alice Williams</h6> <span>Vetrov Systems Development</span> </div> </div> </div> </div>
Testimonial 02
<div class="testimonial-style-02 h-100 shadow-none border"> <div class="item"> <div class="video-image"> <img class="img-fluid w-100" src="images/feature-info/01.jpg" alt=""> <a class="popup-icon popup-youtube" href="https://www.youtube.com/watch?v=LgvseYYhqU0"> <i class="fa fa-play"></i> <div class="svg-item"> <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" height="48px" viewBox="0 0 1920 48" style="enable-background:new 0 0 1920 48;" xml:space="preserve"> <polygon id="XMLID_1_" class="st0" fill="#ffffff" points="1920,48 0,48 0,48 1920,0 "/> </svg> </div> </a> </div> <div class="testimonial-item-sm pb-4"> <div class="testimonial-avatar-sm"> <img class="img-fluid rounded-circle" src="images/avatar/01.jpg" alt=""> </div> <div class="testimonial-content text-white"> <p>[ YOUR CONTENT ]</p> </div> <div class="testimonial-author"> <div class="testimonial-name"> <h6 class="mb-1">Michael Bean</h6> <span>Web Developer</span> </div> </div> </div> </div> </div>
Testimonial 03
<div class="testimonial-style-03 border-radius p-4 h-100 bg-overlay-black-70 bg-holder" style="background-image: url(images/bg/02.jpg);"> <div class="testimonial-item p-2 position-relative z-index-1"> <div class="testimonial-content"> <i class="fas fa-quote-left quotes"></i> <p class="text-white testimonial-des">[ YOUR CONTENT ]</p> </div> <div class="testimonial-author"> <div class="testimonial-name"> <h6 class="mb-1 text-white">- Ame F.</h6> </div> </div> </div> </div>
Tabs
Use the below code to display Tabs :
Nab Tabs 01
<div class="row"> <div class="col-md-3"> <div class="d-flex h-100"> <div class="nav flex-column nav-pills w-100 align-self-lg-center" id="v-pills-tab" role="tablist" aria-orientation="vertical"> <a class="nav-link" id="mission-and-vision-tab" data-toggle="pill" href="#mission-and-vision" role="tab" aria-controls="mission-and-vision" aria-selected="true"><span class="data-hover" data-title="Mission and vision">Mission and vision</span></a> <a class="nav-link active" id="our-challenges-tab" data-toggle="pill" href="#our-challenges" role="tab" aria-controls="our-challenges" aria-selected="false"><span class="data-hover" data-title="Our challenges">Our challenges</span></a> </div> </div> </div> <div class="col-md-9 mt-3 mt-md-0"> <div class="tab-content" id="v-pills-tabContent"> <div class="tab-pane fade" id="mission-and-vision" role="tabpanel" aria-labelledby="mission-and-vision-tab"> [ Tab content ] </div> <div class="tab-pane fade show active" id="our-challenges" role="tabpanel" aria-labelledby="our-challenges-tab"> [ Tab content ] </div> </div> </div> </div>
Nab Tabs 02
<div class="row justify-content-center"> <div class="col-12"> <nav> <div class="nav nav-tabs nav-tabs-02 justify-content-center" id="nav-tab" role="tablist"> <a class="nav-item nav-link active" id="nav-one-tab" data-toggle="tab" href="#nav-one" role="tab" aria-controls="nav-one" aria-selected="true">E-commerce Solution </a> <a class="nav-item nav-link" id="nav-tow-tab" data-toggle="tab" href="#nav-tow" role="tab" aria-controls="nav-tow" aria-selected="false">Digital Strategy</a> </div> </nav> <div class="tab-content mt-5" id="nav-tabContent"> <div class="tab-pane fade show active" id="nav-one" role="tabpanel" aria-labelledby="nav-one-tab"> [ Tab content ] </div> <div class="tab-pane fade" id="nav-tow" role="tabpanel" aria-labelledby="nav-tow-tab"> [ Tab content ] </div> </div> </div> </div>
Team
Use the below code to display Team:
<div class="team"> <div class="team-bg"></div> <div class="team-img"> <img class="img-fluid" src="images/team/01.jpg" alt=""> </div> <div class="team-info"> <a href="#" class="team-name">Aaron Sharp</a> <p>Chief People Officer</p> <ul class="list-unstyled"> <li><a href="#"><i class="fab fa-facebook-f"></i></a></li> <li><a href="#"><i class="fab fa-twitter"></i></a></li> <li><a href="#"><i class="fab fa-linkedin-in"></i></a></li> </ul> </div> </div>
Step
Use the below code to display Step:
Feature Step 01
<div class="row"> <div class="col-md-4 mb-4 mb-md-0"> <div class="feature-info feature-info-style-05 text-center"> <div class="feature-info-icon"> <i class="glyph-icon flaticon-idea"></i> </div> <div class="feature-info-content"> <h5 class="mb-3 feature-info-title">[ Step Title ]</h5> <p class="mb-0 px-lg-5">[ Step description ]</p> </div> </div> </div> <div class="col-md-4 mb-4 mb-md-0"> <div class="feature-info feature-info-style-05 text-center"> <div class="feature-info-icon"> <i class="glyph-icon flaticon-diamond"></i> </div> <div class="feature-info-content"> <h5 class="mb-3 feature-info-title">[ Step Title ]</h5> <p class="mb-0 px-lg-5">[ Step description ]</p> </div> </div> </div> <div class="col-md-4 mb-4 mb-md-0"> <div class="feature-info feature-info-style-05 text-center"> <div class="feature-info-icon"> <i class="glyph-icon flaticon-rocket"></i> </div> <div class="feature-info-content"> <h5 class="mb-3 feature-info-title">[ Step Title ]</h5> <p class="mb-0 px-lg-5">[ Step description ]</p> </div> </div> </div> </div>
Feature Step 02
<div class="row dark-background mt-4 mt-md-5"> <div class="col-lg-3 col-md-6 mb-5 mb-lg-0"> <div class="feature-info feature-info-style-06"> <div class="feature-info-img"> <img class="img-fluid" src="images/feature-info/01.jpg" alt=""> </div> <div class="feature-info-number mb-0"> <span>01</span> <h5 class="mb-0 ml-4 feature-info-title">[ Step Title ]</h5> </div> </div> </div> <div class="col-lg-3 col-md-6 mb-5 mb-lg-0"> <div class="feature-info feature-info-style-06"> <div class="feature-info-img"> <img class="img-fluid" src="images/feature-info/02.jpg" alt=""> </div> <div class="feature-info-number mb-0"> <span>02</span> <h5 class="mb-0 ml-4 feature-info-title">[ Step Title ]</h5> </div> </div> </div> <div class="col-lg-3 col-md-6 mb-5 mb-md-0"> <div class="feature-info feature-info-style-06"> <div class="feature-info-img"> <img class="img-fluid" src="images/feature-info/03.jpg" alt=""> </div> <div class="feature-info-number mb-0"> <span>03</span> <h5 class="mb-0 ml-4 feature-info-title">[ Step Title ]</h5> </div> </div> </div> <div class="col-lg-3 col-md-6"> <div class="feature-info feature-info-style-06"> <div class="feature-info-img"> <img class="img-fluid" src="images/feature-info/04.jpg" alt=""> </div> <div class="feature-info-number mb-0"> <span>04</span> <h5 class="mb-0 ml-4 feature-info-title">[ Step Title ]</h5> </div> </div> </div> </div>
#Extra
Browser Support
Hi-soft supports all major browsers like Google Chrome, Mozilla Firefox, Safari, Opera, Microsoft Edge, Internet Explorer 11 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: http://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
- Shutterstock Shutterstock
- Pexels Pexels
- Unsplash Unsplash
JavaScripts
- Jquery
- Bootstrap
- Countdown
- Counter
- jarallax
- Magnific Popup
- Owl Carousel 2
- popper
- Jquery appear
- Shuffle
- Swiper
- Swiper animation
- Typer
CSS & Fonts
- Bootstrap
- Font Awesome
- Flaticon
- Google Fonts
- — Archivo
- and more…