Introduction
Author: Potenza Global Solutions
This documentation will give you an understanding of how Real Villa template is structured and guide you in performing common functions.
Notes:
- We will not respond to any support questions on 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 5 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"> <div class="topbar"> [TOP BAR CONTENT] </div> <nav class="navbar navbar-light bg-white navbar-static-top navbar-expand-lg header-sticky"> [MENU CONTENT] </nav> </header> <!--header --> <!--Modal login --> <div class="modal login fade" id="loginModal"> [Modal CONTENT] </div> <!--Modal login --> <!-- Banner --> <section class="banner bg-holder bg-overlay-black-30" style="background-image: url(images/banner-01.jpg);"> [BANNER CONTENT] </section> <!-- Banner --> <!--Section 1 --> <section class="space-ptb"> [SECTION 1 CONTENT] </section> <!--Section 1 --> <!--Section 2 --> <section class="space-pb"> [SECTION 2 CONTENT] </section> <!--Section 2 --> <!--footer --> <footer class="footer bg-dark space-pt"> [FOOTER CONTENT] </footer> <!--footer --> [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/select2/select2.css" /> <link rel="stylesheet" href="css/range-slider/ion.rangeSlider.css" /> <link rel="stylesheet" href="css/owl-carousel/owl.carousel.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 5 CSS file. You must need this file. Do not remove this.
- select2.css: This is a Select 2 plugins CSS.
- rangeSlider.css: This is an ion range slider plugins CSS.
- owl.carousel.min.css: This is an owl carousel 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.6.0.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/counter/jquery.countTo.js"></script> <script src="js/select2/select2.full.js"></script> <script src="js/range-slider/ion.rangeSlider.min.js"></script> <script src="js/owl-carousel/owl-carousel.min.js"></script> <script src="js/jarallax/jarallax.min.js"></script> <script src="js/jarallax/jarallax-video.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.
- jquery.countTo.js: This is the countTo plugins file. Use to Count Number Do not change or edit this file.
- select2.full.js: This is a select2 plugins file. Use to convert select tag to ul tag. Do not change or edit this file.
- ion.rangeSlider.min.js: This is the ion.rangeSlider plugins file. Use to price filter. Do not change or edit this file.
- owl-carousel.min.js: This is owl-carousel plugins file. Use to Banner slider. Do not change or edit this file.
- jarallax.min.js: This is a jarallax plugins file. Use to parallax background-images. Do not change or edit this file.
- jarallax-video.js: This is a jarallax-video plugins file. Use to parallax background-video. Do not change or edit this file.
- jquery.magnific-popup.min.js: This is a magnific-popup plugins file. Use to 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. Real Villa 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.
<div class="navbar navbar-light bg-white navbar-static-top navbar-expand-lg header-sticky"> <div class="container-fluid"> <a class="navbar-brand" href="index.html"> <img class="img-fluid" src="images/logo.svg" alt="logo"> </a> </div> </div>
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 34px.
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 34px.
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 #26ae61
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: #969696; (ex: change color code #f5f5f5 ) $primary: #26ae61; $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=Barlow+Semi+Condensed:300,400,500,600,700,800,900%7CRoboto:300,300i,400,400i,500,700,900">
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
Map Listing
How to add property listing on the map?
To add your listing on the map, open file ..js/map/map-script.js
file and add/edit your property details. You can find all the instructions in map-script.js
file about Listing details, changing map center latitude longitude, zoom level etc.
How to place map on the page?
To place map on any page, you need to add below HTML structure.
<section class="banner-map"> <div class="map-canvas"> </div> </section>
Make sure you add below scripts on the same page to make map work.
<!-- map --> <script src="js/map/handlebars.min.js"></script> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyBPohe84NhPXKlVEVXxOsR9HQJkBpa6Z0o"></script> <script src="js/map/snazzy-info-window.min.js"></script> <script src="js/map/map-script.js"></script> <script id="marker-content-template" type="text/x-handlebars-template"> <div class="property-item-map-img" style="background-image: url({{{bgImg}}})"></div> <div class="property-item-map"> <h6 class="property-item-map-title"> <a href="{{link}}">{{title}}</a> </h6> <div class="property-item-map-content">{{{body}}}</div> </div> </script>
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:
<nav class="navbar navbar-light bg-white navbar-static-top navbar-expand-lg header-sticky"> </nav>
Page section padding
You can add this helper class to set section padding top 90px
and padding bottom 90px
.
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-start |
text-align: left; |
text-end |
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 bg-danger
(or any class given below) class where you want to add a badge. See example below:
<span class="badge bg-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 bg-primary |
primary badge |
badge bg-secondary |
secondary badge |
badge bg-success |
Success badge |
badge bg-danger |
danger badge |
badge bg-warning |
Warning badge |
badge bg-info |
info badge |
badge bg-light |
light badge |
badge bg-dark |
dark badge |
Accordion
Use the below code to display accordion:
Accordion 01
<div class="accordion" id="accordion"> <div class="accordion-item border-0"> <div class="accordion-title" id="accordion-title-one"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordion-one" aria-expanded="true" aria-controls="accordion-one">[ Accordation Name ]</a> </div> <div id="accordion-one" class="collapse show" aria-labelledby="accordion-title-one" data-bs-parent="#accordion"> <div class="accordion-content">[ Description ]</div> </div> </div> <div class="accordion-item border-0"> <div class="accordion-title" id="accordion-title-tow"> <a href="#" class="collapsed" data-bs-toggle="collapse" data-bs-target="#accordion-two" aria-expanded="false" aria-controls="accordion-two">[ Accordation Name ]</a> </div> <div id="accordion-two" class="collapse" aria-labelledby="accordion-title-tow" data-bs-parent="#accordion"> <div class="accordion-content">[ Description ]</div> </div> </div> </div>
Accordion 02
<div class="accordion-style-2" id="accordion-02"> <div class="card"> <div class="card-header" id="headingfour"> <h5 class="accordion-title mb-0"> <button class="btn btn-link d-flex ms-auto align-items-center" data-bs-toggle="collapse" data-bs-target="#collapsefour" aria-expanded="true" aria-controls="collapsefour">[ Accordation Name ] <i class="fas fa-chevron-down fa-xs"></i></button> </h5> </div> <div id="collapsefour" class="collapse show accordion-content" aria-labelledby="headingfour" data-bs-parent="#accordion-02"> <div class="card-body"> <p class="mb-0">[ Description ]</p> </div> </div> </div> <div class="card"> <div class="card-header" id="headingfive"> <h5 class="accordion-title mb-0"> <button class="btn btn-link d-flex ms-auto align-items-center collapsed" data-bs-toggle="collapse" data-bs-target="#collapsefive" aria-expanded="false" aria-controls="collapsefive"> [ Accordation Name ] <i class="fas fa-chevron-down fa-xs"></i> </button> </h5> </div> <div id="collapsefive" class="collapse accordion-content" aria-labelledby="headingfive" data-bs-parent="#accordion-02"> <div class="card-body"> <p class="mb-0">[ Description ]</p> </div> </div> </div> </div>
Counter
Use the below code to display Counter:
Counter 01
<div class="row"> <div class="col-lg-3 col-sm-6 mb-3"> <div class="d-flex"> <div class="counter"> <span class="timer text-primary" data-to="1500" data-speed="10000">[ Your Counter Number ] </span> </div> <div class="ms-3 mt-2"> <span>[ YOUR SUBTITLE ]</span> <h5>[ YOUR TITLE ] </h5> </div> </div> </div> <div class="col-lg-3 col-sm-6 mb-3"> <div class="d-flex"> <div class="counter"> <span class="timer text-primary" data-to="1466" data-speed="10000">[ Your Counter Number ] </span> </div> <div class="ms-3 mt-2"> <span>[ YOUR SUBTITLE ]</span> <h5>[ YOUR TITLE ] </h5> </div> </div> </div> <div class="col-lg-3 col-sm-6 mb-3"> <div class="d-flex"> <div class="counter"> <span class="timer text-primary" data-to="1245" data-speed="10000">[ Your Counter Number ] </span> </div> <div class="ms-3 mt-2"> <span>[ YOUR SUBTITLE ]</span> <h5>[ YOUR TITLE ] </h5> </div> </div> </div> <div class="col-lg-3 col-sm-6 mb-3"> <div class="d-flex"> <div class="counter"> <span class="timer text-primary" data-to="1678" data-speed="10000">[ Your Counter Number ] </span> </div> <div class="ms-3 mt-2"> <span>[ YOUR SUBTITLE ]</span> <h5>[ YOUR TITLE ] </h5> </div> </div> </div> </div>
Counter 02
<div class="counter counter-02 mb-4"> <div class="counter-icon"> <span class="pt-1 icon fab flaticon-placeholder"></span> </div> <div class="counter-content"> <span class="timer mb-1" data-to="4561" data-speed="10000">[ Your Counter Number ] </span> <label class="mb-0"> [ YOUR TITLE ] </label> </div> </div>
Counter 03
<div class="counter counter-02 mt-3"> <div class="counter-content"> <span class="timer mb-1" data-to="4561" data-speed="10000">[ Your Counter Number ] </span> <label class="mb-0"> [ YOUR TITLE ] </label> </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:
<div class="countdown"> <span class="theme-color days">00</span> <p class="days_ref">days</p> </div> <div class="countdown"> <span class="theme-color hours">00</span> <p class="hours_ref">hours</p> </div> <div class="countdown"> <span class="theme-color minutes">00</span> <p class="minutes_ref">minutes</p> </div> <div class="countdown"> <span class="theme-color seconds">00</span> <p class="seconds_ref">seconds</p> </div>
Also, update date in custom.js
file as per your requirement:
POTENZA.countdownTimer = function () { if ($countdownTimer.exists()) { $countdownTimer.downCount({ date: '12/25/2023 12:00:00', // Month/Date/Year HH:MM:SS offset: -4 }); } }
Note date: '12/25/2023 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"> <div class="testimonial-content"> <p><i class="quotes">"</i>[ YOUR CONTENT ]</p> </div> <div class="testimonial-name"> <h6 class="text-primary mb-1">Lisa & Graeme</h6> <span>Hamilton Rd. Willoughby</span> </div> </div>
Testimonial 02
<div class="testimonial-02"> <div class="testimonial-content"> <p><i class="fas fa-quote-right quotes"></i>[ YOUR CONTENT ]</p> </div> <div class="testimonial-author"> <div class="testimonial-avatar avatar avatar-lg me-3"> <img class="img-fluid rounded-circle" src="images/path" alt=""> </div> <div class="testimonial-name"> <h6 class="text-primary mb-1">Michael Bean</h6> <span>Hamilton Rd. Willoughby</span> </div> </div> </div>
Testimonial 03
<div class="testimonial-02 testimonial-02-small"> <div class="testimonial-content"> <p><i class="fas fa-quote-right quotes"></i>[ YOUR CONTENT ]</p> </div> <div class="testimonial-author"> <div class="testimonial-avatar avatar avatar-lg me-3"> <img class="img-fluid rounded-circle" src="images/path" alt=""> </div> <div class="testimonial-name"> <h6 class="text-primary">Mikah Hargrove</h6> <span>Hamilton Rd. Willoughby</span> </div> </div> </div>
Tabs
Use the below code to display Tabs :
<ul class="nav nav-tabs mb-4 [Add style class from below]" id="pills-tab" role="tablist"> <li class="nav-item"> <a class="nav-link active" id="tab-03-tab" data-bs-toggle="pill" href="#tab-03" role="tab" aria-controls="tab-03" aria-selected="true">Tab 03</a> </li> <li class="nav-item"> <a class="nav-link" id="tab-04-tab" data-bs-toggle="pill" href="#tab-04" role="tab" aria-controls="tab-04" aria-selected="false">Tab 04</a> </li> <li class="nav-item"> <a class="nav-link" id="tab-05-tab" data-bs-toggle="pill" href="#tab-05" role="tab" aria-controls="tab-05" aria-selected="false">Tab 05</a> </li> </ul> <div class="tab-content" id="pills-tabContent"> <div class="tab-pane fade show active" id="tab-03" role="tabpanel" aria-labelledby="tab-03-tab"> <p class="mt-4">[ Tab content ]</p> </div> <div class="tab-pane fade" id="tab-04" role="tabpanel" aria-labelledby="tab-04-tab"> <p class="mt-4">[ Tab content ]</p>p> </div> <div class="tab-pane fade" id="tab-05" role="tabpanel" aria-labelledby="tab-05-tab"> <p class="mt-4">[ Tab content ]</p> </div> </div>
Note Make sure you use unique IDs for each Tab Items and Tab content.
You can change the tab styles with using following classes :
Class | Description |
---|---|
nav-tabs |
Tab Default |
nav-tabs-02 |
Tab nav 02 |
Browser Support
Real Villa supports all major browsers like Google Chrome, Mozilla Firefox, Safari, Opera, Microsoft Edge.
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
- datetimepicker
- jarallax
- Magnific Popup
- snazzy maps
- nicescroll
- Owl Carousel 2
- popper
- range-slider
- Jquery appear
- select2
- slick
- slideshow
CSS & Fonts
- Bootstrap
- Font Awesome
- Flaticon
- Google Fonts
- — Barlow Semi Condensed
- — Roboto
- and more…