“Appzoc Theme” Documentation by “CoderMiskThemes”


“Appzoc - Multipurpose Bootstrap 5 HTML Template ”

Created: 11/08/2023
By: CoderMiskThemes

Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel free to contact.. Thanks!


Table of Contents

  1. Introduction
  2. Requirements
  3. Installation Guide
  4. Folder Structure
  5. Change Content
  6. Technologies & Versions
  7. Source and Credits

A) Introduction - top

Welcome to Appzoc Multipurpose Template! We would like to thank you for purchasing our theme. It is built using HTML5, CSS3, and the Bootstrap 5 Framework. Appzoc Multipurpose Theme consists of 18 demos and dozens of inner pages. Additionally, there are over 100 reusable blocks to fit all your needs. Each file of the theme is W3C validated, ensuring code quality, compatibility, and adherence to best practices.


B) Requirements - top

VS code editor - For Editing The Code That's It.


C) Installation Guide - top

Firstly, extract the file on your drive. For example, right-click on the zip file and you will notice the "EXTRACT HERE" option. Simply click on that and choose the path where you want to extract the file.

Open the extracted folder in any code editor, preferably the VS Code Editor. Now, open VS Code and download the extension named "Live Server" to preview the Appzoc Theme.


D) Folder Structure - top

Let's understand the folder structure to facilitate template customization.

  1. Assets:
  2. In Assets Folder You Will Find Folders Such as css,js and img

    1. Img:
    2. Also You Will Notice Images In The Asset Folder that are used in The Theme. Image Source : https://unsplash.com/ , https://www.freepik.com/ and https://www.flaticon.com/

    3. CSS:
    4. In css folder you will find one folder as "inner-pages-css" and several css files inside this folder. "inner-pages-css" folder consist of the css file that are used In the inner pages of the theme. Also there are various css files directly under the root "css" folder.These files are used to design the Main Demos Of The Theme.

      Inner Pages Css: we have separtely managed css as per the specific page so that you can efficiently customize the Theme as per your requirement. Eg: to design inner page "https://appzoc.vercel.app/inner-pages/blog_detail.html" there is separate css file used to design this inner page as "blog-detail.css" under the "inner-pages-css" folder.

      Root Css Files Under Css Folder: Similar to inner pages css we have separately managed each css files for the efficient Customization of the theme. Eg: to design "https://appzoc.vercel.app/index-app-landing-1.html" we have css file as "style-app-landing-1.css".

      Similarly, you can search the keyword "<!-- External CSS -->" by clicking "ctrl + f" in VS Code to know the CSS file used for each page of the theme. For example, for the app landing theme, you will notice this line by searching "<!-- External CSS -->" in the "index-app-landing-1.html" file:

                          <link rel="stylesheet" href="assets/css/style-app-landing-1.css">
                          

      Each Section Of The Css Files Is Well Commented for your easiness in customizing the theme.

      You Can Visit This Site : "https://www.w3schools.com/css/default.asp" for Undestanding each properties used in the css folders.

      Similarly, CSS for other pages is organized in a similar manner. You can refer to the example for the App landing demo below:

      Example CSS Code For app landing demo : assets/css/style-app-landing-1.css
      								
          /* ==== Main CSS ==== */
      
      
          /* ====== Whole HTML Document ======= */
      
          * {
              margin: 0%;
              padding: 0%;
              box-sizing: border-box;
              scroll-behavior: smooth;
          }
      
          body {
              font-family: 'Outfit', sans-serif;
          }
          
          ...
          ... 
          ...
          
          /* ======= Preloader Section ======== */
      
      
          .preloader {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: calc(100% - 0%);
          background-color: #fff;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          z-index: 9999;
          }
      
          ...
          ... 
          ...
      
          /* ====== Navbar Section ====== */
      
          ...
          ... 
          ...
      								  
      							
    5. JS:
    6. In the "JS" folder, you will find a file named "script.js" that is responsible for handling the logic used throughout the theme.

      Each section of the JS code is well-commented, providing explanations and descriptions of the code's functionality.

      JS Code : assets/js/script.js
      								
      							  
      									
          $(document).ready(function(){
      
              // Ensures that the navbar is closed when a navbar item is clicked
      
      	    $(".nav-item").click(function () {
                      ...
                      ... 
                      ...
                  });	
      
              // end
              
              // Faq section accordian tabs
      
              $('.accordian-content').not(':eq(0)').hide();
              $('.accordian-button').click(function () {
                  ...
                  ... 
                  ... 
              });
      
              // end
      
               		
          });
      
      								
      						
  3. Documentation:
  4. In the "documentation" folder, you will notice an "asset" folder that contains the dependencies required for the documentation.

    Additionally, there is a file named "index-documentation.html" that serves as the main documentation file. It contains the usage guide and other relevant information.

  5. inner-pages:
  6. In the "inner-pages" folder, you will find several HTML files. These files contain the HTML code for the inner pages of the theme. For example, you will find files such as "blog_detail.html" and "login.html" among others.

  7. HTML FILES(root folder)
  8. In this folder, you will find all the HTML files for the main pages of the theme. For example, you will find files such as "index-single-course.html," "index-blog.html," "index-app-landing-1.html," and so on.


E) Change Content - top

Lets Understand How To Change Content Of The Theme

  1. Changing Title & Title Icon:
  2. Follow The Code given below To Change Title & Title Icon:

    HTML Code
    						
        
        <link rel="icon" href="assets/img/title-icon.jpeg" type="image/x-icon"> 
    
        
        <title>Appzoc - Multipurpose Bootstrap 5 HTML Template<title>
    						
    					

    Here href="" in Title Icon refers to folderName/ imgName.extension

  3. Changing Nav Link :
  4. Follow The Code given below To Change Navbar Links :

    HTML Code
    						
        <nav id="nav-parent" class="nav-parent">
        <ul class="menu">
            <li class="active">
            <a href="javascript:void(0)">HOME</a>
            <ul class="menu-child">
                ....
            </ul>
            </li>
            <li>
            <a href="javascript:void(0)">PAGES</a>
            <ul class="menu-child">
                ....
            </ul>
            </li>
            <li>
            <a href="#testimonial">TESTIMONIAL</a>
            </li>
            <li>
            <a href="#pricing">PRICING</a>
            </li>
            <li>
            <a href="#contact">CONTACT</a>
            </li>
        </ul>
        </nav>
                              
    	  
    						  
    				

    Here, the href="" attribute will jump to specific content. For example, href="#testimonial" will directly jump to the content in the TESTIMONIAL section.

    Additionally, href="javascript:void(0)" is used to prevent jumping to any content.

  5. Changing Images In the Themes :
  6. To Change Images In The Theme "src" attribute present in the <img> tag is used.

    Eg: src="imgFolder/imgName.imgExtension"

    By Adding The Correct Path You Can Easily Change The Images.

    Follow The Example Code below To Change The Images:

    Firstly upload the image to the assets/img folder & then set path in the <img> tag .You just need to set the path of the "src" attribute to replace any image in the theme.

    HTML Code
    						
        <img src="assets/img/APPZOC_one.png" alt="image" width="148" height="40">
    						  
    				
  7. Changing The Content & Heading In The Theme :
  8. For heading, Different heading tags are used. Eg: <h1>,<h2>,<h3>, etc.

    <p> tag is used for paragraph content in the theme.

    You Can Put Your Content in this tags as per your requirement.

    Follow The Example Code Given Below To Understand In A Better Way.You just need to change the text wrap in the HTML element accordingly.

    HTML Code
    						
        <h5>1 . Download The App</h5>
        <p class="text-muted">We strive to embrace and drive change in our industry.</p>
    						  
    				
  9. NOTE:
  10. You have To follow The Same Process For Changing Content Of Any Demo Of The Appzoc Theme.

    Eg: If You Want To Change Content Of App landing template then you can change it from index-app-landing-1.html . Thats's it!


F) Technologies & Versions - top

  1. HTML 5
  2. CSS 3
  3. Bootstrap 5
  4. JQUERY 3.6

G) Source & Credits - top

  1. Fonts
  2. https://fonts.google.com/

  3. Images
  4. https://www.freepik.com/

    https://unsplash.com/

  5. Icons
  6. https://fontawesome.com/

    https://www.flaticon.com/

  7. Jquery Plugins
  8. https://owlcarousel2.github.io/OwlCarousel2/

    https://fancybox.net/

    https://plugins.jquery.com/slick/

    https://jquery-plugins.net/jquery-nice-select

    https://jquery-plugins.net/particles-js-javascript-library-for-creating-particles