Quickstart

Jump-start your development using this amazing templates.

HTML Structure

Crypt template is based on Bootstrap Framework (http://getbootstrap.com/) Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web.

Below is sample coding structure:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <title>Crypt</title>
    <link rel="stylesheet" href="./bootstrap/css/bootstrap.css">
    <link rel="stylesheet" href="./css/style.css">
    <link rel="stylesheet" href="./css/responsive.css">
    <link rel="stylesheet" href="./css/button.css">
    <link rel="stylesheet" href="./css/gsap.css">
    <link rel="icon" type="image/svg" href="./images/favicon.svg">
</head>

<body>
    <!-- Sidebar -->
    <aside class="sidebar">
        <div class="crypt-logo logo-expand mt-3">
            ...
        </div>
        <div class="side-wrapper">
            ...
        </div>
    </aside>
    <!-- start header -->
    <header>
        <!-- header -->
        <div class="header d-flex align-items-center">
            ...
        </div>
        <!-- navigation -->
        <nav class="navbar py-0 navbar-dark bg-dark">
            <div class="container-fluid">
                <div class="offcanvas offcanvas-end text-bg-dark" tabindex="-1" id="offcanvasDarkNavbar" aria-labelledby="offcanvasDarkNavbarLabel">
                    ...
                </div>
            </div>
        </nav>
    </header>

    <!-- start section -->
    <section>
        <div class="container">
            ....
        </div>
    </section>

    <!-- start footer -->
    <footer>
        <div class="container">
            ....
        </div>    
    </footer>

    <!-- Main Content End -->

    <!-- javascript libraries -->
    <script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/ScrollTrigger.min.js"></script>
    <script src="js/gsap.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" ></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.8/umd/popper.min.js" ></script>
    <script src="js/particle-canvas.js"></script>
    <script src="./bootstrap/js/bootstrap.js"></script>
    <script src="js/main.js"></script>

</body>
</html>

Header

Below is sample coding structure:

Sidebar Nav

Below is sample coding structure:

Offcanvas Nav

The logo container is in the <nav> tag inside the <header>.

Below is sample coding structure:

Logo

The logo container is in the <nav> tag inside the <header>.

Below is sample coding structure:

Color Schemes

It's easy to change the colours on your website. Simply use this short code to add your colour scheme to the demo/css/style.css file using the following code:

Below is sample coding structure:

Google Fonts

If you wish to add or change your website fonts. You simply need to set your fonts in the demo/css/style.css file using the following code:

Below is sample coding structure:

Using Self-hosted Fonts

If you plan to use a self-hosted fonts, use the following code possibly at the top of the demo/css/style.css file:

JavaScript

Crypt comes with lots of helpful JavaScript plugins to make your website more user-friendly. These plugins add useful features for your website visitors. We built the JavaScript (JS) on a strong foundation using Object functions, making it sturdy and efficient.

You can locate the JS plugin files in the js/ folder.

Last updated