logo logo
  • Request Support
  • Awesome template
  • Purchase Now

Histudy Navigation

  • Histudy Getting Started
    • What's Included
    • How to Install Histudy - Django-5 Website Template
  • briefcase Template Structures
    • Django-5 Structure
    • CSS Files and Structure
    • Javascript Files
  • histudy Change Contents
    • Changing Images
    • Changing Brand Logo
    • Changing Colors
  • histudy Header
    • Header Default
    • Header Transparent
    • Header With Topbar
    • Header with center navigation
  • histudy Elements
    • Button
    • Badge
    • Accordion
    • Brand
    • Counter
    • Social
    • Progressbar
    • Callto Action
    • Blockquote
    • Instagram
  • histudy Footer
    • Footer Default
    • Footer Two
    • Footer Three
  • histudy Sources and Credits
  • histudy Change Log
  • histudy Support

Histudy - Django-5 - Documentation


Welcome to Histudy ! Get familiar with the Stripe products and explore their features:

histudy
Working with Doc

You can any work by following our docs

histudy
Formatting Content

Our content is more formating for your website

histudy
Perfect Responsive

Our Template is full Perfect for all device. You can visit our template all device easily.

histudy
Sass Available

The tamplate has Sass available for css. You can Change css by sass

histudy
Fast Loading Speed

Histudy is faster loading speed. Histudy create your template so much faster

histudy
24 Support System

We are provide 24 hours support for all clients.You can purchase without hesitation.

Getting Started

Welcome to Histudy ! Get familiar with the Stripe products and explore their features:

Experience Histudy, the next-gen all-in-one Online Courses & Education Django 5 Template. Built with Django 5 and Bootstrap 5, Histudy features a modern, component-based structure designed to be both developer-friendly and highly efficient.

This fast-loading template comes with a clean, contemporary design and includes a wide variety of homepage layouts such as Home Default, Course School, Online School, Kindergarten, Classic LMS, University Status, Instructor Portfolio, Language Academy, Gym Coaching, Online Course, Single Course, Marketplace, University Classic, Home Elegant, Home Technology, and many more essential inner and detail pages.

Histudy Core Features

  • Build with Django-5 & SCSS
  • Responsive layout (desktops, tablets, mobile devices)
  • Built with Bootstrap v5.0.2
  • Well structured code
  • Hinted Typography
  • Dark Mode Available
  • RTL Available
  • Sass Available
  • W3 Valid 100%
  • Fast Loading Speed
  • Cross Browser Support
  • Dedicated Support, Lifetime Updates
  • And much more …

What's Included

After purchasing Histudy template on templateforest.net with your Envato account, go to your Download page. You can choose to download Histudy Django-5 template only or the entire Histudy template package which contains the following files:

  1. Histudy Django-5 template: A .zip file with all HTML files with all necessary assets.
  2. Documentation: An HTML format documentation.
  3. Licensing.

How to Install Histudy Django-5 Template

1. Install Python

Make sure Python is installed on your machine. If not already installed, you can download and install Python from the official website.

2. Install Django 5

Make sure to have the Django 5 installed & running in your computer. To install Django 5 run below command

pip install Django 5==5.0

3. Running the Django 5 Application

python manage.py runserver
or
python manage.py runserver 8001

4. Editing Histudy Template

Before all that you have to edit your template and place your own contents by replacing old demo contents, in this case, you will need a code editor such as – VScode, Sublime Text etc.

Home Page

Step - 1: Add the RTL Attribute to the HTML Tag:

                                                
                                                    <!DOCTYPE html>
                                                    <html lang="en" dir="rtl">                                                                                                   
                                                
                        

Step - 2: Include the RTL CSS File:

Ensure you link to an RTL CSS file in the <head> section of your HTML

                                                
                                            <link rel="stylesheet" href="/static/css/rtl-style.css">
                                                 
                                            

Step - 3: Include the Bootstrap RTL File:

                                                
                                            <link rel="stylesheet" href="/static/css/bootstrap.rtl.min.css">
                                                 
                                            

3. To Convert Histudy into Dark mode

Step - 1: Include the JavaScript File:

Home Page
                                                                                            
                                                                                        <script src="/static/js/vendor/jquery.style.switcher.js"></script>
                                                                                             
                                                                                        

Step - 2: Include this HTML code to active the converter:

Home Page
                                                
                                                            <div id="my_switcher" class="my_switcher">
                                                                <ul>
                                                                    <li>
                                                                        <a href="javascript: void(0);" data-theme="light" class="setColor light">
                                                                            <img src="/static/images/about/sun-01.svg" alt="Sun images"> <span title="Light Mode"> Light</span>
                                                                        </a>
                                                                    </li>
                                                                    <li>
                                                                        <a href="javascript: void(0);" data-theme="dark" class="setColor dark">
                                                                            <img src="/static/images/about/vector.svg" alt="Vector Images"> <span title="Dark Mode"> Dark</span>
                                                                        </a>
                                                                    </li>
                                                                </ul>
                                                            </div>
                                                
                                            

Step - 3: To switch logo:

Home Page
                                                
                                                        <div class="header-info">
                                                            <div class="logo logo-dark">
                                                                <a href="#">
                                                                    <img src="/static/images/logo/logo.png" alt="Education Logo Images">
                                                                </a>
                                                            </div>                                                         
                                                            
                                                            <div class="logo d-none logo-light">
                                                                <a href="#">
                                                                    <img src="/static/assets/images/dark/logo/logo-light.png" alt="Education Logo Images">
                                                                </a>
                                                            </div>
                                                        </div>
                                                
                                            

Step - 4: To change Breadcrumb add this class name

Home Page
                                                
                                                        <div class="breadcrumb-dark">
                                                            
                                                        </div>
                                                
                                            

4. Package comes with documentation unzip the download package, you’ll found a folder with all template files, like above screenshot.

Home Page

Template Structures

Articles

  • Django-5 Structure
  • CSS Files and Structure
  • JavaScript Files

Django-5 Structure

This template is a fixed layout with four columns. The main contents are inside the 'body' tag divided into differt section (i.e. header, banner, services,... footer etc.). The general template structure is the same throughout the template. Here is the general structure.

Images
                                            
                                              <!DOCTYPE html>
                                              <html lang="en">

                                              {% include  'partials/head.html' %}

                                              <body class="{{ bodyClass|default:'' }}">

                                                  {% if switcher|default:"true" != "false" %}
                                                  {% include "partials/switcher.html" %}
                                                  {% endif %}

                                                  {% if header|default:"true" != "false" %}
                                                  {% include "partials/header.html" %}
                                                  {% endif %}

                                                      {% block content %}
                                                      {% endblock %}

                                                  {% if topToBottom|default:"true" != "false" %}
                                                  {% include "partials/topToBottom.html" %}
                                                  {% endif %}

                                                  {% if footer|default:"true" != "false" %}
                                                  {% include "partials/footer.html" %}
                                                  {% endif %}

                                                  {% include "partials/script.html"%}

                                              </body>

                                              </html>
                                                    
                                            
                                        

CSS Files and Structure

We are using one customed CSS files (style.css) and several vendor css files. CSS file structure is as follows:

HTML Images
                                            
                                                /*********************************************************************************
                                                  Template Name: Histudy - Online Courses & Education Django-5 Template
                                                  Description: A perfect Template For Education. It comes with nice and clean design.
                                                  Note: This is style css.
                                                **********************************************************************************/
                                                /**************************************************************
                                                  STYLESHEET INDEXING
                                                  |
                                                  |
                                                  |___ Default Styles
                                                  | |
                                                  | |___ variables
                                                  | |___ mixins
                                                  | |___ reset
                                                  | |___ typography
                                                  | |___ extend
                                                  | |___ animations
                                                  | |___ shortcode
                                                  | |___ spacing
                                                  | |___ edu-common
                                                  | |___ forms
                                                  | |___ text-animation
                                                  |
                                                  |
                                                  |___Header Styles
                                                  | |___ header-common
                                                  | |___ headertop
                                                  | |___ offertopbar
                                                  | |___ headermid
                                                  | |___ social-share
                                                  | |___ header
                                                  | |___ nav
                                                  | |___ mega-menu
                                                  | |___ mobilemenu
                                                  | |___ offcanvas
                                                  | |___ one-page-navigation
                                                  |
                                                  |
                                                  |___Elements Styles
                                                  | |___ button
                                                  | |___ section-title
                                                  | |___ breadcrumb
                                                  | |___ card
                                                  | |___ course-meta
                                                  | |___ service
                                                  | |___ feature
                                                  | |___ about
                                                  | |___ callto-action
                                                  | |___ accordion
                                                  | |___ image-gallery
                                                  | |___ counterup
                                                  | |___ pricingtable
                                                  | |___ badge
                                                  | |___ team
                                                  | |___ social
                                                  | |___ pagination
                                                  | |___ backtotop
                                                  | |___ newsletterform
                                                  | |___ brand
                                                  | |___ portfolio
                                                  | |___ contact
                                                  | |___ testimonial
                                                  | |___ advance-tab
                                                  | |___ category
                                                  | |___ instagram
                                                  | |___ split
                                                  | |___ countdown
                                                  | |___ progressbar
                                                  | |___ category-box
                                                  | |___ course-filter
                                                  | |___ modal
                                                  | |___ list
                                                  | |___ search
                                                  | |___ video
                                                  | |___ 404
                                                  |___Blog Styles
                                                  | |___ blog
                                                  | |___ post-default
                                                  | |___ sidebar
                                                  | |___ blog-details
                                                  | |___ unit-test
                                                  |___Shop Styles
                                                  | |___ shop
                                                  | |___ product-details
                                                  | |___ my-account
                                                  | |___ cart
                                                  | |___ checkout
                                                  | |___ minicart
                                                  |___Template Styles
                                                  | |___ banner
                                                  | |___ course-details
                                                  | |___ course-sidebar
                                                  | |___ contact
                                                  | |___ sidebar
                                                  | |___ course-action-bottom
                                                  |___Footer Styles
                                                  | |___ footer
                                                  | |___ copyright
                                                  | |___ back-to-top
                                                  | |___ dark
                                                  |
                                                  |
                                                  |___ END STYLESHEET INDEXING
                                                ***************************************************************/
                                                    
                                            
                                        

JavaScript Files

There is a custom.js file named main.js and are several vendor.js files as plugins. We are using jQuery(a javascript library) instead of vanilla javascript. Our file structure is a follows:

HTML Images

Change Contents

  • Changing Images
  • Changing Brand Logo

Changing Images

To change any images of the website

  1. Carefully collect the source name of the image (i.e. banner-img.jpg)
  2. Open the file called images.
  3. Find the particular image file.
  4. Replace the file with your image.
  5. Make sure that the file name does not change.The file name should be the same.

Example: Suppose you want to change the following image file:

                                                    
                                                        <div class="logo">
                                                            <a href={% url 'index.html' %}">
                                                                <img src="/static/images/logo/logo.png" alt="Education Logo Images">
                                                            </a>
                                                        </div>
                                                    
                                                
HTML Images

You have to do the following to change this image with your own image:

  1. Open the file called images.
  2. Find the particular image file called banner-img.jpg
  3. Replace the file with your image
  4. Make sure that the file name does not change.
Note

Images seen in the live preview are only set for preview purposes. They are not included in the download files.

Changing Brand Logo

To change any images of the website
  1. Carefully collect the source name of the image (i.e. banner-img.jpg)
  2. Open the file called images.
  3. Find the particular image file.
  4. Replace the file with your image.
  5. Make sure that the file name does not change.The file name should be the same.

Example: Suppose you want to change the following image file for change your logo:

                                                    
                                                        <div class="logo">
                                                            <a href="{% url 'index.html' %}">
                                                                <img src="/static/images/logo/logo.png" alt="Education Logo Images">
                                                            </a>
                                                        </div>
                                                    
                                                
HTML Images

Changing Colors

We have used scss for this project to write css. If you are familiar with scss you should customize only the .scss files. Please make sure you compile the style.scss file after you have made changes in any of the .scss files.

  • Changing default template colors

Changing default template colors

  1. Open the variable.scss file from assets > scss > defaults folder with a text-editor.
  2. Change the right-side values of the variables to change any default colors of your site.
  3. Save your file.

Have a look at the following image for a visual description:

Images

Header Types

Welcome to Histudy Header Elements! You can choose 12 Types of header package for createing you website.

01. Header Default

To change any images of the website

Images

                                                    
                                                        <!-- Start Header Area -->
                                                            <header class="rbt-header rbt-header-1">
                                                                <div class="rbt-sticky-placeholder"></div>
                                                                <div class="rbt-header-wrapper header-space-betwween header-sticky">
                                                                    <div class="container-fluid">
                                                                        <div class="mainbar-row rbt-navigation-center align-items-center">
                                                                            <div class="header-left rbt-header-content">
                                                                                <div class="header-info">
                                                                                    <div class="logo">
                                                                                        <!-- Logo Here  -->
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                            <div class="rbt-main-navigation d-none d-xl-block">
                                                                                <nav class="mainmenu-nav">
                                                                                    <!-- Start Navigation Here  -->
                                                                                    <ul class="mainmenu">
                                                                                        ...
                                                                                    </ul>
                                                                                    <!-- End Navigation Here  -->
                                                                                </nav>
                                                                            </div>
                                                                            <div class="header-right">
                                                                                <ul class="quick-access">
                                                                                    <!-- Start Navbar Icons -->
                                                                                    ...
                                                                                    <!-- End Navbar Icons -->
                                                                                </ul>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </header>
                                                            <!-- End Header Area -->
                                                    
                                                

02. Header Transparent

To change any images of the website

  1. Add rbt-transparent-header class with header tag
  2. For content white add color-white-variation class with rbt-header-wrapper class
Images

                                                    
                                                        <!-- Start Header Area -->
                                                            <header class="rbt-header rbt-header-1 rbt-transparent-header">
                                                                <div class="rbt-sticky-placeholder"></div>
                                                                <div class="rbt-header-wrapper color-white-variation header-space-betwween header-sticky">
                                                                    <div class="container-fluid">
                                                                        <!-- Start Header Content  -->
                                                                        ...
                                                                        <!-- End Header Content  -->
                                                                    </div>
                                                                </div>
                                                            </header>
                                                            <!-- End Header Area -->
                                                    
                                                

03. Header With Topbar

Header with topbar and navigation menu to change your header area.

Images

                                                    
                                                        <!-- Start Header Area -->
                                                            <header class="rbt-header rbt-header-1">
                                                                <div class="rbt-sticky-placeholder"></div>
                                                                <!-- Start Header Top  -->
                                                                <div class="rbt-header-top rbt-header-top-1 variation-height-50 header-space-betwween bg-color-darker d-none d-xl-block">
                                                                    <div class="container-fluid">
                                                                        <div class="rbt-header-sec align-items-center ">
                                                                            <div class="rbt-header-sec-col rbt-header-left">
                                                                                <div class="rbt-header-content">
                                                                                    <!-- Start Header Information List  -->
                                                                                    ...
                                                                                    <!-- End Header Information List  -->
                                                                                </div>
                                                                            </div>
                                                                            <div class="rbt-header-sec-col rbt-header-center">
                                                                                <div class="rbt-header-content">
                                                                                   ...
                                                                                </div>
                                                                            </div>
                                                                            <div class="rbt-header-sec-col rbt-header-right">
                                                                                <div class="rbt-header-content">
                                                                                    ...
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <!-- End Header Top  -->
                                                                <div class="rbt-header-wrapper header-space-betwween header-sticky">
                                                                    <div class="container-fluid">
                                                                        <!-- Start Header Content  -->
                                                                        ...
                                                                        <!-- End Header Content  -->
                                                                    </div>
                                                                </div>
                                                            </header>
                                                            <!-- End Header Area -->
                                                    
                                                

04. Header With Center Navigation

Header with ceneter navigation menu to change your header area.

Images

                                                    
                                                        <header class="rbt-header rbt-header-1">
                                                                <div class="rbt-sticky-placeholder"></div>
                                                                <div class="rrbt-header-wrapper  header-sticky">
                                                                    <div class="container">
                                                                        <div class="mainbar-row rbt-navigation-center align-items-center">
                                                                            <div class="header-left"></div>
                                                                            <div class="rbt-main-navigation d-none d-xl-block">
                                                                                <!-- Start Header Content  -->
                                                                                    ...
                                                                                <!-- End Header Content  -->
                                                                            </div>
                                                                            <div class="header-right"></div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </header>
                                                    
                                                

All Elemnts and Shortcode Types


Welcome to Histudy Elements and Shortcode! You can select any elements & shortcode and customize easily and build your website.

Buttons

This the button classes on an <a> and <button> element and create various button.

Images

                                                    
                                                        <!-- Start Buttons  -->
                                                        <a class="rbt-btn btn-sm" href="#">Button SM</a>
                                                        <a class="rbt-btn btn-md" href="#">Button MD</a>
                                                        <a class="rbt-btn" href="#">Button MD</a>
                                                        <a class="rbt-btn btn-lg" href="#">Button LG</a>
                                                        <a class="rbt-btn btn-xl" href="#">Button XL</a>
                                                        <a class="rbt-btn btn-xxl" href="#">Button XXL</a>
                                                        <!-- End Buttons  -->
                                                    
                                                


Images

                                                    
                                                        <a class="rbt-btn" href="#">Histudy Button</a>
                                                        <a class="rbt-btn btn-secondary" href="#">Histudy Button</a>
                                                        <a class="rbt-btn btn-coral" href="#">Histudy Button</a>
                                                        <a class="rbt-btn btn-violet" href="#">Histudy Button</a>
                                                        <a class="rbt-btn btn-white" href="#">Histudy Button</a>
                                                        <a class="rbt-btn btn-pink" href="#">Histudy Button</a>
                                                    
                                                


Note

For more demo example, you can check our histudy button.html page.

Badge

This the button classes on an <span> or <a> element and create various badge.

Images

                                                    
                                                        <!-- Start Badge  -->
                                                        <span class="rbt-default-badge position-static">Histudy Badge</span>
                                                        <span class="rbt-badge">Histudy Badge</span>
                                                        <span class="rbt-badge-4">Histudy Badge</span>
                                                        <span class="rbt-badge-5">Histudy Badge</span>
                                                        <span class="rbt-badge variation-02 bg-primary-opacity">Histudy Badge</span>
                                                        <span class="rbt-badge-6 bg-primary-opacity">Histudy Badge</span>
                                                        <span class="rbt-badge-6 bg-secondary-opacity">Histudy Badge</span>
                                                        <a href="#" class="rbt-badge-2">
                                                            <div class="image"><img src="/static/images/testimonial/client-02.png" alt="Education Images"></div> Learn with <strong>Fatima Asrafy</strong>
                                                        </a>
                                                        <!-- End Badge  -->
                                                    
                                                
Note

For more demo example, you can check our histudy badge.html page.

Accordion

Extend the default collapse behavior to create an accordion with the panel component see the code for better understanding

Images

                                                    
                                                        <!-- Start Accordion  -->
                                                        <div class="rbt-accordion-style rbt-accordion-01  accordion">
                                                            <div class="accordion" id="accordionExamplea1">
                                                                <div class="accordion-item card">
                                                                    <h2 class="accordion-header card-header" id="headingOne">
                                                                        <button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
                                                                            What is Histudy ? How does it work?
                                                                        </button>
                                                                    </h2>
                                                                    <div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExamplea1">
                                                                        <div class="accordion-body card-body">
                                                                            You can run Histudy easily. Any School, University, College can be use this
                                                                            histudy education template for their educational purpose. A university can be
                                                                            run their online leaning management system by histudy education template.
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="accordion-item card">
                                                                    <h2 class="accordion-header card-header" id="headingTwo">
                                                                        <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
                                                                            How can I get the customer support?
                                                                        </button>
                                                                    </h2>
                                                                    <div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExamplea1">
                                                                        <div class="accordion-body card-body">
                                                                            After purchasing the product need you any support you can be share with
                                                                            us with sending mail to pixcelsthemes@gmail.com
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <!-- End Badge  -->
                                                    
                                                
Note

For more demo example, you can check our histudy accordion.html page.

Clients

Showcase of clients logos or images. See below image and code for more information.

Images

                                                    
                                                        <!-- Start Clients  -->
                                                        <ul class="brand-list brand-style-3 justify-content-center justify-content-lg-between">
                                                            <li><a href="#"><img src="/static/images/brand/brand-01.png" alt="Brand Image"></a></li>
                                                            <li><a href="#"><img src="/static/images/brand/brand-02.png" alt="Brand Image"></a></li>
                                                            <li><a href="#"><img src="/static/images/brand/brand-03.png" alt="Brand Image"></a></li>
                                                            <li><a href="#"><img src="/static/images/brand/brand-05.png" alt="Brand Image"></a></li>
                                                            <li><a href="#"><img src="/static/images/brand/brand-06.png" alt="Brand Image"></a></li>
                                                        </ul>
                                                        <!-- End Clients  -->
                                                    
                                                
Note

For more demo example, you can check our histudy brand.html page.

Counters

Different styles of counters for your website are presented in our website.

Images

                                                    
                                                        <div class="row g-5 hanger-line">
                                                            <!-- Start Single Counter  -->
                                                            <div class="col-lg-3 col-md-6 col-sm-6 col-12">
                                                                <div class="rbt-counterup rbt-hover-03 border-bottom-gradient">
                                                                    <div class="top-circle-shape"></div>
                                                                    <div class="inner">
                                                                        <div class="rbt-round-icon">
                                                                            <img src="/static/images/icons/counter-01.png" alt="Icons Images">
                                                                        </div>
                                                                        <div class="content">
                                                                            <h3 class="counter"><span class="odometer" data-count="500">00</span>
                                                                            </h3>
                                                                            <span class="subtitle">Learners &amp; counting</span>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <!-- End Single Counter  -->
                                                            <!-- Start Single Counter  -->
                                                            <div class="col-lg-3 col-md-6 col-sm-6 col-12 mt--60 mt_md--30 mt_sm--30 mt_mobile--60">
                                                                <div class="rbt-counterup rbt-hover-03 border-bottom-gradient">
                                                                    <div class="top-circle-shape"></div>
                                                                    <div class="inner">
                                                                        <div class="rbt-round-icon">
                                                                            <img src="/static/images/icons/counter-02.png" alt="Icons Images">
                                                                        </div>
                                                                        <div class="content">
                                                                            <h3 class="counter"><span class="odometer" data-count="800">00</span>
                                                                            </h3>
                                                                            <span class="subtitle">Courses & Video</span>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <!-- End Single Counter  -->
                                                            <!-- Start Single Counter  -->
                                                            <div class="col-lg-3 col-md-6 col-sm-6 col-12 mt_md--60 mt_sm--60">
                                                                <div class="rbt-counterup rbt-hover-03 border-bottom-gradient">
                                                                    <div class="top-circle-shape"></div>
                                                                    <div class="inner">
                                                                        <div class="rbt-round-icon">
                                                                            <img src="/static/images/icons/counter-03.png" alt="Icons Images">
                                                                        </div>
                                                                        <div class="content">
                                                                            <h3 class="counter"><span class="odometer" data-count="1000">00</span>
                                                                            </h3>
                                                                            <span class="subtitle">Certified Students</span>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <!-- End Single Counter  -->
                                                            <!-- Start Single Counter  -->
                                                            <div class="col-lg-3 col-md-6 col-sm-6 col-12 mt--60 mt_md--30 mt_sm--30 mt_mobile--60">
                                                                <div class="rbt-counterup rbt-hover-03 border-bottom-gradient">
                                                                    <div class="top-circle-shape"></div>
                                                                    <div class="inner">
                                                                        <div class="rbt-round-icon">
                                                                            <img src="/static/images/icons/counter-04.png" alt="Icons Images">
                                                                        </div>
                                                                        <div class="content">
                                                                            <h3 class="counter"><span class="odometer" data-count="100">00</span>
                                                                            </h3>
                                                                            <span class="subtitle">Registered Enrolls</span>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <!-- End Single Counter  -->
                                                        </div>
                                                    
                                                
Note

For more demo example, you can check our histudy counterup.html page.

Social Share

Showcase of Social share. See below image and code for more information.

  • Add .transparent-with-border class For Transparent with border style.
  • Add .with-gradient class For Hover gradient style.
  • Add .with-bg-primary class For With Bg Primary Color style.
  • Add .icon-naked class For naked style.
Images

                                                    
                                                        <ul class="social-icon social-default">
                                                            <li><a href="https://www.facebook.com/">
                                                                    <i class="feather-facebook"></i>
                                                                </a>
                                                            </li>
                                                            <li><a href="https://www.twitter.com">
                                                                    <i class="feather-twitter"></i>
                                                                </a>
                                                            </li>
                                                            <li><a href="https://www.instagram.com/">
                                                                    <i class="feather-instagram"></i>
                                                                </a>
                                                            </li>
                                                            <li><a href="https://www.linkdin.com/">
                                                                    <i class="feather-linkedin"></i>
                                                                </a>
                                                            </li>
                                                        </ul>
                                                    
                                                
Note

For more demo example, you can check our histudy social.html page.

Progressbar

Different types of progressbar are styled in our template. See below image and code for more information.

  • Add .large-size class for large size style.
  • Add .no-radius class for square style.
Images

                                                    
                                                        <div class="rbt-progress-style-1">
                                                            <div class="single-progress">
                                                                <h6 class="title">Web Development</h6>
                                                                <div class="progress">
                                                                    <div class="progress-bar wow fadeInLeft" data-wow-duration="0.5s"
                                                                        data-wow-delay=".3s" role="progressbar" style="width: 90%"
                                                                        aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
                                                                    </div>
                                                                    <span class="progress-number">90%</span>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    
                                                
Note

For more demo example, you can check our histudy progressbar.html page.

Call To Action

Awesome call to action styles. See below image and code for more information.

Images

                                                    
                                                        <div class="rbt-callto-action-area">
                                                            <div class="rbt-callto-action rbt-cta-default style-4 bg-gradient-6 mt--75">
                                                                <div class="container">
                                                                    <div class="row align-items-center content-wrapper row--30 mt_dec--30 position-relative">
                                                                        <div class="col-lg-8 mt--30 offset-lg-3">
                                                                            <div class="inner">
                                                                                <div class="content text-left">
                                                                                    <h2 class="title sal-animate" data-sal="slide-up">Ready to start creating a Educational Website?</h2>
                                                                                    <div class="call-to-btn text-start mt--30">
                                                                                        <a class="rbt-btn btn-gradient hover-icon-reverse" href="#">
                                                                                            <span class="icon-reverse-wrapper">
                                                                                        <span class="btn-text">Purchase Histudy</span>
                                                                                            <span class="btn-icon"><i class="feather-arrow-right"></i></span>
                                                                                            <span class="btn-icon"><i class="feather-arrow-right"></i></span>
                                                                                            </span>
                                                                                        </a>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                        <div class="thumbnail">
                                                                            <img class="w-100" src="/static/images/shape/cta.png" alt="Shape Images">
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                            
                                                    
                                                
Note

For more demo example, you can check our histudy call-to-action.html page.

Blockquote

Awesome call to action styles. See below image and code for more information.

Images

                                                    
                                                        <blockquote class="rbt-blockquote square rbt-border-none bg-color-gray-light">
                                                            <p>Lorem ipsum dolor sit amet,consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.</p>
                                                        </blockquote>
                                                    
                                                
Note

For more demo example, you can check our histudy post-format-quote.html page.

Instagram

Awesome instagram styles. See below image and code for more information.

Images

                                                    
                                                        <div class="instagram-grid">
                                                            <a href="#">
                                                                <img src="/static/images/instagram/instagram-03.jpg" alt="instagram">
                                                                <span class="user-info">
                                                            <span class="icon"><i class="icon-instagram"></i></span>
                                                                <span class="user-name">@Histudy</span>
                                                                </span>
                                                            </a>
                                                        </div>
                                                    
                                                
Note

For more demo example, you can check our histudy instagram.html page.

Footer Style

Welcome to Histudy Footer You can select any footer & customize easily and build your website.

Footer Default

Awesome Footer styles. See below image and code for more information.

Images

                                                    
                                                        <footer class="rbt-footer footer-style-1">
                                                            <div class="footer-top">
                                                                <div class="container">
                                                                    <div class="row row--15 mt_dec--30">
                                                                        <div class="col-lg-4 col-md-6 col-sm-6 col-12 mt--30">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                        <div class="offset-lg-1 col-lg-2 col-md-6 col-sm-6 col-12 mt--30">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                        <div class="col-lg-2 col-md-6 col-sm-6 col-12 mt--30">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                        <div class="col-lg-3 col-md-6 col-sm-6 col-12 mt--30">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </footer>
                                                    
                                                

Footer Two

Awesome Footer Two styles. See below image and code for more information.

Images

                                                    
                                                        <div class="footer-style-2 ptb--60 bg-color-white">
                                                            <div class="container-fluid">
                                                                <div class="row align-items-center justify-content-between">
                                                                    <div class="col-lg-12">
                                                                        <div class="inner text-center">
                                                        
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    
                                                

Footer Three

Awesome Footer Three styles. See below image and code for more information.

Images

                                                    
                                                        <footer class="rbt-footer footer-style-1 bg-color-white overflow-hidden">
                                                            <div class="footer-top">
                                                                <div class="container">
                                                                    <div class="row g-5">
                                                                        <div class="col-lg-4 col-md-6 col-sm-6 col-12">
                                                                            <div class="footer-widget">
                                                                            </div>
                                                                        </div>
                                                                        <div class="col-lg-2 col-md-6 col-sm-6 col-12">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                        <div class="col-lg-2 col-md-6 col-sm-6 col-12">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                        <div class="col-lg-4 col-md-6 col-sm-6 col-12">
                                                                            <div class="footer-widget">
                                                        
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <div class="rbt-separator-mid">
                                                                <div class="container">
                                                                    <hr class="rbt-separator m-0">
                                                                </div>
                                                            </div>
                                                            <!-- Start Copyright Area  -->
                                                            <div class="copyright-area copyright-style-1 ptb--20">
                                                                <div class="container">
                                                                    <div class="row align-items-center">
                                                                        <div class="col-xxl-6 col-xl-6 col-lg-6 col-md-12 col-12">
                                                                            <p class="rbt-link-hover text-center text-lg-start">Copyright © 2024 <a href="#">Pixcels-Themes.</a> All Rights Reserved</p>
                                                                        </div>
                                                                        <div class="col-xxl-6 col-xl-6 col-lg-6 col-md-12 col-12">
                                                                            <ul class="copyright-link rbt-link-hover justify-content-center justify-content-lg-end mt_sm--10 mt_md--10">
                                                                                <li><a href="#">Terms of service</a></li>
                                                                                <li><a href="#">Privacy policy</a></li>
                                                                                <li><a href="#">Payment</a></li>
                                                                                <li><a href="#">Security</a></li>
                                                                            </ul>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <!-- End Copyright Area  -->
                                                        </footer>
                                                    
                                                

Sources and Credits

We've used the following fonts, free icons and plugins as listed:

  • Google Fonts
  • Feathericons Icon fonts
  • Swiperjs Slider
  • Magnific Popup
  • Animate.css
  • jQuery
  • Waypoints Js
  • Isotop
  • odometer Counter Up
  • Masonry Activation
  • Sal Animation
  • easypie
  • jquery one page nav
  • Bootstrap Select

Support

Thank you for purchasing my template.
If you have any questions that are beyond the scope of this help file, please feel free to open a new ticket at our Support forum

Change Log

Our team never stops Improving, bug fixes, and improvements. See What's New. We recommend you to read the changelog for every update.

28 April 2025

init Release.

1.0.0

NewTheme release

If you need the template customization or custom development services please contact us.

Email Us

histudy

© 2025 All Rights Reserved by Pixcels Themes