Documentation

Hey there! You’re looking at Anchor UI Bootstrap KIT official documentation. Anchor is a free Bootstrap UI Kit with flexible, ready to use UI components which will hep you build websites faster. Let’s begin!

Quick Start

File Structure

  • assets/
    • css/
      • vendor/
        • aos.css
        • prism.css
      • main.css
      • main.css.map
    • img/
    • js/
      • vendor/
        • jquery.min.js
        • bootstrap.min.js
        • popper.min.js
        • aos.js
      • functions.js
    • scss/
      • 1-frameworks/
        • bootstrap/
          • source/
          • bootstrap.scss
          • bootstrap-grid.scss
          • bootstrap-reboot.scss
          • bootstrap-user-variables.scss
        • _index.scss
      • 2-plugins
      • 3-base
      • 4-modules
      • 5-layout
      • main.scss
    • index.html
    • blog.html
    • landing.html
    • page.html
    • login.html
    • starter-template.html
    • docs.html
    • gulpfile.js
    • package.json
    • README.md

Basic Template

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/favicon.ico">
<link rel="icon" type="image/png" href="./assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Site Title</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
    
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:300,300i,400,600,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
    
<!-- CSS -->
<link href="./assets/css/main.css" rel="stylesheet"/>
<link href="./assets/css/vendor/aos.css" rel="stylesheet"/>
    
</head>
    
<body> 

<main> My content goes here </main>

<!-- Javascript -->
<script src="./assets/js/vendor/jquery.min.js" type="text/javascript"></script>
<script src="./assets/js/vendor/popper.min.js" type="text/javascript"></script>
<script src="./assets/js/vendor/bootstrap.min.js" type="text/javascript"></script>
<script src="./assets/js/functions.js" type="text/javascript"></script>

</body>
    
</html>

Install Gulp

Gulp can automate tasks in your development workflow. Gulp is also required in order to work with scss files. In order to use Gulp you will need to download Node JS first:

Download Node JS

After Node is installed you can now proceed to Gulp installation. To do that simply run the following command in your terminal. This will install Gulp globally. Aferwards you can cd to you project’s folder where our KIT is installed.

npm install gulp-cli -g

Customize with SCSS

It is highly recommended that all the customized styles to be stored only within the user’s files from the scss folder. Gulp is required for this.

  1. Download the project’s zip.
  2. Make sure you have node.js (https://nodejs.org/en/) installed.
  3. Type npm install in terminal/console in the source folder where package.json is located.
  4. Make sure you have gulp npm install gulp
  5. Run in terminal gulp open-app for opening the Dashboard Page (default) of the product.
  6. Run in terminal gulp compile-scss for a single compilation or gulp watch for continous compilation of the changes that you make in *.scss files. This command should be run in the same folder where gulpfile.js and package.json are located.
When working with SCSS, you only need to these 2 files:
  • assets/scss/frameworks/bootstrap/bootstrap-user-variables.scss (here you can edit or add variables)
  • assets/scss/main.scss (here you will customize your style)
Do not touch anything else! Everything you edit in these 2 files will be compiled in main.css.

Components

Colors

Options:
  • Background: bg-*color
  • Text: text-*color
  • Alert: alert-*color
  • Button: btn-*color
  • Badge: badge-*color
Primary
Secondary
Info
Success
Warning
Danger
Purple
Black
Cyan
White
Orange
Light

Alerts

Options:
  • Background: alert-*color
  • Text: text-*color
  • Shadow: shadow, shadow-sm, shadow-lg
<div class="alert alert-primary shadow-lg" role="alert">
    A simple primary alert-check it out!
</div>
<div class="alert alert-danger" role="alert">
    <i class="fas fa-bullhorn"></i> A simple danger alert-check it out! <button type="button" class="close" data-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">×</span>
    </button>
</div>

Animations

Options:
  • Fade animations:
    • fade
    • fade-up
    • fade-down
    • fade-left
    • fade-right
    • fade-up-right
    • fade-up-left
    • fade-down-right
    • fade-down-left
  • Flip animations:
    • flip-up
    • flip-down
    • flip-left
    • flip-right
  • Slide animations:
    • slide-up
    • slide-down
    • slide-left
    • slide-right
  • Zoom animations:
    • zoom-in
    • zoom-in-up
    • zoom-in-down
    • zoom-in-left
    • zoom-in-right
    • zoom-out
    • zoom-out-up
    • zoom-out-down
    • zoom-out-left
    • zoom-out-right
Call: AOS.init({ duration: 800 });

Add animation effect with data-aos="*animation". Example:

<p data-aos="fade-left">This is from left.</p>    
<p data-aos="fade-right">This is from right.</p>    
<p data-aos="fade-down">This is from down.</p>    
<p data-aos="fade-up">This is from up.</p>

Avatars

Options:
  • Round: rounded-circle
  • Size: width="*"
  • Shadow: shadow, shadow-sm, shadow-lg
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="50">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="70">
<img class="rounded-circle shadow" src="assets/img/demo/avatar2.jpg" width="90">

Badges

Options:
  • Background: badge-*color
  • Text: text-*color
  • Shadow: shadow, shadow-sm, shadow-lg
Primary Secondary Success Danger Warning Info Profile 15%
<span class="badge badge-pill badge-primary">Primary</span>
<a class="btn btn-primary" href="#">Profile <span class="badge badge-warning ml-2">15%</span></a>

Buttons

Options
  • Background: btn-*color
  • Text: text-*color
  • Size: btn-sm, btn, btn-lg
  • Outline: btn-outline-*color
  • Round: btn-round
  • Width: btn-block w-100
  • Shadow: shadow, shadow-sm, shadow-lg
<a href="#" class="btn btn-primary">Default</a>
<a href="#" class="btn btn-outline-primary">Outline</a>
<a href="#" class="btn btn-primary btn-round shadow-lg">Round</a>
<a href="#" class="btn btn-outline-primary btn-round">Outline Round</a>

Call to action

Options
  • Background: bg-*color
  • Text: text-*color
  • Shadow: shadow, shadow-sm, shadow-lg
  • Not round: jumbotron-fluid
Free Bootstrap 4.1.3 UI Kit with for rapid development
<!-- Call to action -->
<div class="jumbotron p-5 jumbotron-fluid bg-primary">
	<div class="container h-100">
		<div class="row justify-content-between align-items-center text-md-center text-lg-left">
			<div class="col-lg-9">
				<h5 class="font-weight-light text-white">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
			</div>
			<div class="col-lg-3 text-md-center text-lg-right mt-4 mb-4">
				<a href="#" class="btn btn-lg btn-info">Call to action</a>
			</div>
		</div>
	</div>
</div>

Free Bootstrap 4.1.3 UI Kit with for rapid development
Call to action
<!-- Call to action -->
<div class="jumbotron p-5 jumbotron-fluid bg-info">
	<div class="container text-center h-100">
		<h5 class="font-weight-light mb-4">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
		<a href="#" class="btn btn-lg btn-primary">Call to action</a>
	</div>
</div>

Free Bootstrap 4.1.3 UI Kit with for rapid development
<!-- Call to action -->
<div class="jumbotron p-5 jumbotron-fluid bg-warning">
	<div class="container h-100">
		<div class="row justify-content-between align-items-center text-md-center text-lg-left">
			<div class="col-lg-9">
				<h5 class="font-weight-light text-dark">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
			</div>
			<div class="col-lg-3 text-md-center text-lg-right mt-4 mb-4">
				<a href="#" class="btn btn-lg btn-outline-dark">Call to action</a>
			</div>
		</div>
	</div>
</div>

Cards

Options
  • Shadow: shadow, shadow-sm, shadow-lg
  • No border: border-0
  • No rounded: rounded-0

Author Card

Card image cap
Sal

Hi, I am the author of Anchor Bootstrap UI Kit @wowthemesnet.

Simple Card

Card image cap
Just a card

Some quick example text to build on the card title and make up the bulk of the card's content.

Read More

Card Overlay

Card image

Overlay center align

With supporting text below as a natural lead-in to additional content.

Do anything

Featured Blog Card

Business

Living the Dream on a Sunny Island

Nov 12

This is a wider card with supporting text below as a natural lead-in to additional content.

Continue reading
<!-- Author Card -->
<div class="card shadow-sm border-0">
<img class="card-img-top" src="./assets/img/demo/1.jpg" alt="Card image cap">
<div class="card-body text-center">
    <img class="rounded-circle shadow mt-neg5" src="./assets/img/demo/avatar.png" width="70">
    <h5 class="card-title">Sal</h5>
    <p class="card-text text-muted">
         Hi, I am the author of Anchor Bootstrap UI Kit @wowthemesnet.
    </p>
    <div class="text-center">
        <a target="_blank" href="#"><span class="iconbox iconsmall rounded-circle bg-secondary text-white mr-1"><i class="fab fa-facebook-f"></i></span></a>
        <a target="_blank" href="#"><span class="iconbox iconsmall rounded-circle bg-info text-white mr-1"><i class="fab fa-twitter"></i></span></a>
        <a target="_blank" href="#"><span class="iconbox iconsmall rounded-circle bg-dark text-white"><i class="fab fa-github"></i></span></a>
    </div>
</div>
</div>

<!-- Simple Card -->
<div class="card shadow-sm border-0">
    <img class="card-img-top" src="./assets/img/demo/2.jpg" alt="Card image cap">
    <div class="card-body">
        <h5 class="card-title">Just a card</h5>
        <p class="card-text text-muted">
             Some quick example text.
        </p>
        <a href="#" class="btn btn-info btn-round">Read More</a>
    </div>
</div>

<!-- Card Overlay -->
<div class="card bg-dark overlay overlay-black text-white shadow-lg border-0">
    <img class="card-img" src="./assets/img/demo/7.jpg" alt="Card image">
    <div class="card-img-overlay d-flex align-items-center text-center">
        <div class="card-body">
            <h3 class="card-title">Overlay center align</h3>
            <p class="card-text text-muted">
                 With supporting text below as a natural lead-in to additional content.
            </p>
            <a href="#" class="btn btn-info btn-round">Do anything</a>
        </div>
    </div>
</div>

<!-- Featured Card Blog -->
<div class="card flex-md-row mb-4 box-shadow h-xl-300">
    <div class="card-body d-flex flex-column align-items-start">
        <strong class="d-inline-block mb-2 text-purple">Business</strong>
        <h3 class="mb-0">
        <a class="text-dark" href="#">Living the Dream on a Sunny Island</a>
        </h3>
        <div class="mb-1 text-muted">
            Nov 12
        </div>
        <p class="card-text mb-auto">
            This is a wider card with supporting text below as a natural lead-in to additional content.
        </p>
        <a class="text-gray" href="#">Continue reading</a>
    </div>
    <img class="card-img-right flex-auto d-none d-md-block" src="assets/img/demo/blog1.jpg">
</div>
Options
  • Shadow: shadow, shadow-sm, shadow-lg
  • Rounded: rounded
Images with non-equal heights may cause a jump effect. Here's the call for a smooth transition: $('.carousel').on('slide.bs.carousel', function (event) { var height = $(event.relatedTarget).height(); var $innerCarousel = $(event.target).find('.carousel-inner'); $innerCarousel.animate({ height: height }); });

<div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
    <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
    <li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
    <li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner shadow-sm rounded">
    <div class="carousel-item active">
        <img class="d-block w-100" src="assets/img/demo/slide1.jpg" alt="First slide">
        <div class="carousel-caption d-none d-md-block">
            <h5>Mountains, Nature Collection</h5>
        </div>
    </div>
    <div class="carousel-item">
        <img class="d-block w-100" src="assets/img/demo/slide2.jpg" alt="Second slide">
        <div class="carousel-caption d-none d-md-block">
            <h5>Freedom, Sea Collection</h5>
        </div>
    </div>
    <div class="carousel-item">
        <img class="d-block w-100" src="assets/img/demo/slide3.jpg" alt="Third slide">
        <div class="carousel-caption d-none d-md-block">
            <h5>Living the Dream, Lost Island</h5>
        </div>
    </div>
</div>
</div>
Options
  • Background: bg-*color (apply to footer and svg classes.
  • Text Color: text-*color

Dark Footer


<!-- dark footer -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-black" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"></path>
</svg>
<footer class="bg-black pb-5">
<div class="container">
	<div class="row">
		<div class="col-12 col-md mr-4">
			<i class="fas fa-copyright text-white"></i>
			<small class="d-block mt-3 mb-3 text-muted">© 2021 Anchor Bootstrap</small>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-white">Features</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Cool stuff</a></li>
				<li><a class="text-muted" href="#">Random feature</a></li>
				<li><a class="text-muted" href="#">Team feature</a></li>
				<li><a class="text-muted" href="#">Stuff for developers</a></li>
			</ul>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-white">Resources</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Resource</a></li>
				<li><a class="text-muted" href="#">Resource name</a></li>
				<li><a class="text-muted" href="#">Another resource</a></li>
				<li><a class="text-muted" href="#">Final resource</a></li>
			</ul>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-white">Utilities</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Business</a></li>
				<li><a class="text-muted" href="#">Education</a></li>
				<li><a class="text-muted" href="#">Government</a></li>
				<li><a class="text-muted" href="#">Gaming</a></li>
			</ul>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-white">About</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Team</a></li>
				<li><a class="text-muted" href="#">Locations</a></li>
				<li><a class="text-muted" href="#">Privacy</a></li>
				<li><a class="text-muted" href="#">Terms</a></li>
			</ul>
		</div>
	</div>
</div>
</footer>

Light Footer


<!-- light footer -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-light" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"></path>
</svg>
<footer class="bg-light pb-5">
<div class="container">
	<div class="row">
		<div class="col-12 col-md mr-4">
			<i class="fas fa-copyright text-dark"></i>
			<small class="d-block mt-3 mb-3 text-muted">© 2021 Anchor Bootstrap</small>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-dark">Features</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Cool stuff</a></li>
				<li><a class="text-muted" href="#">Random feature</a></li>
				<li><a class="text-muted" href="#">Team feature</a></li>
				<li><a class="text-muted" href="#">Stuff for developers</a></li>
			</ul>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-dark">Resources</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Resource</a></li>
				<li><a class="text-muted" href="#">Resource name</a></li>
				<li><a class="text-muted" href="#">Another resource</a></li>
				<li><a class="text-muted" href="#">Final resource</a></li>
			</ul>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-dark">Utilities</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Business</a></li>
				<li><a class="text-muted" href="#">Education</a></li>
				<li><a class="text-muted" href="#">Government</a></li>
				<li><a class="text-muted" href="#">Gaming</a></li>
			</ul>
		</div>
		<div class="col-6 col-md">
			<h5 class="mb-4 text-dark">About</h5>
			<ul class="list-unstyled text-small">
				<li><a class="text-muted" href="#">Team</a></li>
				<li><a class="text-muted" href="#">Locations</a></li>
				<li><a class="text-muted" href="#">Privacy</a></li>
				<li><a class="text-muted" href="#">Terms</a></li>
			</ul>
		</div>
	</div>
</div>
</footer>

Minimal Footer


<!-- minimal footer -->
<footer class="bg-black pb-5 pt-4">
<div class="container">
	<div class="row justify-content-center text-center">
		<div class="col-md-12">			
			<span class="d-block mt-3 text-gray">©	2018 Anchor Bootstrap UI Kit, made with <i class="fas fa-heart text-danger"></i> by <a target="_blank" href="https://www.wowthemes.net">WowThemes.net</a>. 
            </span>
		</div>
	</div>
</div>
</footer>

Forms

Options
  • Rounded: input-round

Inline Form


<div class="row">
    <div class="col">
        <input type="text" class="form-control input-round" placeholder="First name">
    </div>
    <div class="col">
        <input type="text" class="form-control input-round" placeholder="Last name">
    </div>
    <div class="col">
        <button type="submit" class="btn btn-primary btn-round">Subscribe</button>
    </div>
</div>

Sign Up Form

We'll never share your email with anyone else.

<form>
<div class="form-group">
    <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email" required="">
    <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
    <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password" required="">
</div>
<div class="form-group form-check">
    <input type="checkbox" class="form-check-input" id="exampleCheck1">
    <label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-success btn-round">Sign in</button>
</form>

Contact Form


<form>
<div class="row form-group">
    <div class="col">
        <input type="text" class="form-control" placeholder="First name">
    </div>
    <div class="col">
        <input type="text" class="form-control" placeholder="Last name">
    </div>
</div>
<div class="form-group">
    <textarea class="form-control" id="exampleFormControlTextarea1" rows="6"></textarea>
</div>
<button type="submit" class="btn btn-primary btn-round">Submit</button>
</form>

Features

Responsive

Your website works on any device: desktop, tablet or mobile. It will look great!

Gulp

You can easily read, edit, and write your own code, or change everything.

UI Kit

There is a bunch of useful and necessary elements for developing your website.


<div class="row">
    <div class="col-md-4">
        <div class="media">
            <div class="iconbox iconmedium rounded-circle text-info mr-4">
                <i class="fab fa-html5"></i>
            </div>
            <div class="media-body">
                <h5>Responsive</h5>
                <p class="text-muted">
                     Your website works on any device: desktop, tablet or mobile.
                </p>
            </div>
        </div>
    </div>
    <div class="col-md-4">
        <div class="media">
            <div class="iconbox iconmedium rounded-circle text-purple mr-4">
                <i class="fab fa-gulp"></i>
            </div>
            <div class="media-body">
                <h5>Gulp</h5>
                <p class="text-muted">
                     You can easily read, edit, and write your own code, or change everything.
                </p>
            </div>
        </div>
    </div>
    <div class="col-md-4">
        <div class="media">
            <div class="iconbox iconmedium rounded-circle text-info mr-4">
                <i class="fab fa-amazon"></i>
            </div>
            <div class="media-body">
                <h5>UI Kit</h5>
                <p class="text-muted">
                     There is a bunch of useful and necessary elements for developing your website.
                </p>
            </div>
        </div>
    </div>
</div>

Headers

Options:
  • Background color: bg-*color (apply to jumbotron & svg classes)
  • Text color: text-*color

Wavy Header

Build something nice & easy

With this FREE Bootstrap 4.1.3 UI Kit &
Learn more
<!-- wavy header -->
<div class="jumbotron jumbotron-lg jumbotron-fluid mb-0 pb-3 bg-primary position-relative">
    <div class="container-fluid text-white h-100">
        <div class="d-lg-flex align-items-center justify-content-between text-center pl-lg-5">
            <div class="col pt-4 pb-4">
                <h1 class="display-3">Build something <strong>nice</strong> &amp; easy</h1>
                <h5 class="font-weight-light mb-4">With this FREE Bootstrap 4.1.3<strong> UI Kit</strong> &amp; <strong><i class="fab fa-sass fa-2x text-info"></i></strong></h5>
                <a href="#" class="btn btn-lg btn-outline-white btn-round">Learn more</a>
            </div>
            <div class="col align-self-bottom align-items-right text-right">
                <img src="assets/img/demo/dashb2.png" class="rounded img-fluid">
            </div>
        </div>
    </div>
</div>
<svg style="-webkit-transform:rotate(-180deg); -moz-transform:rotate(-180deg); -o-transform:rotate(-180deg); transform:rotate(-180deg); margin-top: -1px;" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-primary" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"/>
</svg>

Simple Header

This is a title

<!-- simple header -->
<div class="jumbotron jumbotron-lg jumbotron-fluid jumbotron-lg-withnav mb-3 bg-primary position-relative">
	<div class="container text-white h-100 tofront">
		<div class="row align-items-center justify-content-center text-center">
			<div class="col-md-10">
				<h1 class="display-3">This is a title</h1>
			</div>
		</div>
	</div>
</div>

Header with Nav

This is a title

<!-- header with nav -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
	<a class="navbar-brand" href="./index.html"><i class="fas fa-anchor mr-2"></i><strong>Anchor UI</strong> Kit</a>
	<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
	<span class="navbar-toggler-icon"></span>
	</button>
	<div class="navbar-collapse collapse" id="navbarColor02" style="">
		<ul class="navbar-nav mr-auto d-flex align-items-center">
			<li class="nav-item">
			<a class="nav-link" href="./index.html">Intro</a>
			</li>
			<li class="nav-item dropdown">
			<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
			Examples </a>
			<div class="dropdown-menu" aria-labelledby="navbarDropdown">
				<a class="dropdown-item" href="./landing.html">Home Landing</a>
				<a class="dropdown-item" href="./login.html">User Login</a>
				<a class="dropdown-item" href="./blog.html">Blog Index</a>
				<a class="dropdown-item" href="./page.html">Sample Page</a>
			</div>
			</li>
			<li class="nav-item">
			<a class="nav-link" href="./docs.html">Docs</a>
			</li>
		</ul>
		<ul class="navbar-nav ml-auto d-flex align-items-center">
			<li class="nav-item">
			<span class="nav-link" href="#">
			<a class="btn btn-info btn-round shadow" href="#" data-toggle="modal" data-target="#modal_newsletter"><i class="fas fa-cloud-download-alt"></i> Download UI Kit </a><a href="https://github.com/wowthemesnet/Anchor-Bootstrap-UI-Kit/archive/master.zip" class="downloadzip"></a>
			
			</span>
			</li>
		</ul>
	</div>
</div>
</nav>
<div class="jumbotron jumbotron-lg jumbotron-fluid mb-3 bg-primary position-relative">
	<div class="container text-white h-100 tofront">
		<div class="row align-items-center justify-content-center text-center">
			<div class="col-md-10">
				<h1 class="display-3">This is a title</h1>
			</div>
		</div>
	</div>
</div>

Icons

Anchor UI Kit comes with latest Font Awesome, the web’s most popular icon set and toolkit. Here are all the available icons.

Simple Icon Options
  • Color: text-*color
  • Size: fa-2x, fa-3x
Bordered Icon Options
  • Color: text-*color
  • Size: iconsmall, iconmedium, iconlarge
  • Circle: rounded-circle
  • Shadow: shadow, shadow-sm, shadow-lg
Background Fill Icon Options
  • Background: bg-*color
  • Size: iconsmall, iconmedium, iconlarge
  • Circle: rounded-circle
  • Shadow: shadow, shadow-sm, shadow-lg

<!-- icon sizes -->
<i class="fas fa-chart-line"></i> 
<i class="fas fa-chart-line fa-2x"></i> 
<i class="fas fa-chart-line fa-3x"></i>

Bordered Icons:

<!-- bordered icons -->
<span class="iconbox iconsmall rounded-circle text-primary"><i class="fab fa-facebook-f"></i></span>
<span class="iconbox iconmedium rounded-circle text-info"><i class="fab fa-twitter"></i></span>
<span class="iconbox iconlarge rounded-circle text-danger"><i class="fab fa-google"></i></span>

Background Icons:

<!-- background icons -->
<span class="iconbox iconsmall rounded-circle bg-primary text-white shadow border-0"><i class="fas fa-cart-arrow-down"></i></span> 
<span class="iconbox iconmedium rounded-circle bg-warning text-white shadow border-0"><i class="fas fa-coffee"></i></span> 
<span class="iconbox iconlarge rounded-circle bg-success text-white shadow border-0"><i class="fa fa-book-reader"></i></span>

Jumbotron

Options:
  • Background color: bg-*color
  • Size: jumbotron-md, jumbotron-lg, jumbotron-xl
  • Text color: text-*color

Jumbotron Simple

Anchor UI Kit

Free Bootstrap 4.1.3 UI Kit with for rapid development
<!-- jumbotron simple -->
<div class="jumbotron jumbotron-lg bg-cyan jumbotron-fluid">
	<div class="container text-center text-white h-100">
		<h1 class="display-2">Anchor <strong>UI Kit</strong></h1>
		<h5 class="font-weight-light">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
	</div>
</div>

Jumbotron with Background Image

Anchor UI Kit

Free Bootstrap 4.1.3 UI Kit with for rapid development

Made with by WOW Themes

<!-- jumbotron with background image -->
<div class="jumbotron jumbotron-xl jumbotron-fluid overlay overlay-blue" style="background-size:cover; background-image:url(assets/img/demo/1.jpg);">
	<div class="container text-center text-white h-100">
		<h1 class="display-2">Anchor <strong>UI Kit</strong></h1>
		<h5 class="font-weight-light">Free Bootstrap 4.1.3<strong> UI Kit</strong> with <strong><i class="fab fa-sass fa-2x"></i></strong> for rapid development</h5>
	</div>
	<p class="bottom-align-text-absolute">
		<span class="d-block text-center text-white">Made with <i class="fas fa-heart text-danger"></i> by WOW Themes</span>
	</p>
</div>

Modals

<!-- button triggering modal -->
<button type="button" class="btn btn-primary w-100" data-toggle="modal" data-target="#exampleModalCenter">
Basic vertical center </button>

<!-- The modal itself -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
	<div class="modal-dialog modal-dialog-centered" role="document">
		<div class="modal-content">
			<div class="modal-header border-0">
				<button type="button" class="close" data-dismiss="modal" aria-label="Close">
				<span aria-hidden="true">×</span>
				</button>
			</div>
			<div class="modal-body">
				<div class="pb-4 pr-4 pl-4 text-center">
					<img src="assets/img/favicon.ico">
					<h3 class="heading mt-4">Basic Modal</h3>
					<p>
						 Do not keep silent when your own ideas and values are being attacked. If a dictatorship ever comes to this country, it will be by the fault of those who keep silent.
					</p>
					<p>
						<em class="text-muted">You can add any HTML in the body.</em>
					</p>
				</div>
			</div>
		</div>
	</div>
</div>
Options:
  • Background color: bg-*color
  • Text color: navbar-dark, navbar-light
  • Fixed: fixed-top
  • Fixed white bg on scroll: topnav

Dark Navbar

<!-- navbar dark -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
	<a class="navbar-brand" href="#"><i class="fas fa-anchor mr-2"></i><strong>Anchor UI</strong> Kit</a><button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown-1" aria-controls="navbarNavDropdown-1" aria-expanded="false" aria-label="Toggle navigation" style=""><span class="navbar-toggler-icon"></span></button>
	<div class="collapse navbar-collapse" id="navbarNavDropdown-1">
		<ul class="navbar-nav mr-auto">
			<li class="nav-item active"><a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a></li>
			<li class="nav-item"><a class="nav-link" href="#">Features</a></li>
			<li class="nav-item"><a class="nav-link" href="#">Pricing</a></li>
			<li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="https://wowthemes.net" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Services</a>
			<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
				<a class="dropdown-item" href="#">Design</a><a class="dropdown-item" href="#">Development</a><a class="dropdown-item" href="#">Marketing</a>
			</div>
			</li>
		</ul>
		<ul class="navbar-nav">
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-twitter"></i></a></li>
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-facebook"></i></a></li>
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-linkedin"></i></a></li>
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-github"></i></a></li>
		</ul>
	</div>
</div>
</nav>

White Navbar

You can change the color by replacing bg-primary with any of the other colors. If you choose a light background you will want a dark text, so change navbar-dark with navbar-light. See the example below for a white bg navbar.

<!-- navbar white -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
	<a class="navbar-brand" href="#"><i class="fas fa-anchor mr-2"></i><strong>Anchor UI</strong> Kit</a><button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown-1" aria-controls="navbarNavDropdown-1" aria-expanded="false" aria-label="Toggle navigation" style=""><span class="navbar-toggler-icon"></span></button>
	<div class="collapse navbar-collapse" id="navbarNavDropdown-1">
		<ul class="navbar-nav mr-auto">
			<li class="nav-item active"><a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a></li>
			<li class="nav-item"><a class="nav-link" href="#">Features</a></li>
			<li class="nav-item"><a class="nav-link" href="#">Pricing</a></li>
			<li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="https://wowthemes.net" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Services</a>
			<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
				<a class="dropdown-item" href="#">Design</a><a class="dropdown-item" href="#">Development</a><a class="dropdown-item" href="#">Marketing</a>
			</div>
			</li>
		</ul>
		<ul class="navbar-nav">
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-twitter"></i></a></li>
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-facebook"></i></a></li>
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-linkedin"></i></a></li>
			<li class="nav-item"><a class="nav-link" href="#"><i class="fab fa-github"></i></a></li>
		</ul>
	</div>
</div>
</nav>

Fixed Navbar

Add fixed-top to the nav class to have a fixed navigation.

Important: Our demo includes a special class topnav. This changes the navigation background color on scroll to bg-white. The call is in assets/js/functions.js on line 4.

Pagination

<!-- pagination -->
<nav aria-label="Page navigation example">
<ul class="pagination">
	<li class="page-item"><a class="page-link" href="#"><i class="fas fa-angle-left"></i></a></li>
	<li class="page-item"><a class="page-link" href="#">1</a></li>
	<li class="page-item active"><a class="page-link" href="#">2</a></li>
	<li class="page-item"><a class="page-link" href="#">3</a></li>
	<li class="page-item"><a class="page-link" href="#">4</a></li>
	<li class="page-item"><a class="page-link" href="#"><i class="fas fa-angle-right"></i></a></li>
</ul>
</nav>

Popovers

Options:
  • Placement: data-placement="top/right/bottom/left"
Call: $(function () { $('[data-toggle="popover"]').popover() }) $('.popover-dismiss').popover({ trigger: 'focus' })
<!-- popover -->
<a tabindex="0" data-placement="top" class="btn btn-light" role="button" data-toggle="popover" data-trigger="focus" title="" data-content="And here's some amazing content. It's very engaging. Right?" data-original-title="Dismissible popover">On Top</a>
<a tabindex="0" data-placement="right" class="btn btn-light" role="button" data-toggle="popover" data-trigger="focus" title="" data-content="And here's some amazing content. It's very engaging. Right?" data-original-title="Dismissible popover">On Right</a>
<a tabindex="0" data-placement="bottom" class="btn btn-light" role="button" data-toggle="popover" data-trigger="focus" title="" data-content="And here's some amazing content. It's very engaging. Right?" data-original-title="Dismissible popover">On Bottom</a>
<a tabindex="0" data-placement="left" class="btn btn-light" role="button" data-toggle="popover" data-trigger="focus" title="" data-content="And here's some amazing content. It's very engaging. Right?" data-original-title="Dismissible popover">On Left</a>

Pricing

Options:
  • Background color: bg-*color (apply to card-header)
  • Button color: btn-*color
  • Text-color: text-*color
  • Shadow: shadow-sm, shadow, shadow-lg (apply to card)

Personal

$11 / mo

  • 10 users included
  • 2 GB of storage
  • Email support
  • Help center access

Premium

$15 / mo

  • 20 users included
  • 10 GB of storage
  • Priority email support
  • Help center access

Enterprise

$29 / mo

  • 30 users included
  • 15 GB of storage
  • Phone and email support
  • Help center access

<!-- pricing -->
<div class="card-deck card-pricing text-center">
	<div class="card border-0 shadow-sm">
		<div class="card-header bg-info border-0 pt-4 pb-4">
			<h3 class="my-0 font-weight-normal mb-3">Personal</h3>
			<h4 class="card-title pricing-card-title">$11 <small class="text-muted">/ mo</small></h4>
		</div>
		<div class="card-body">
			<ul class="list-unstyled mt-3 mb-4">
				<li>10 users included</li>
				<li>2 GB of storage</li>
				<li>Email support</li>
				<li>Help center access</li>
			</ul>
			<button type="button" class="btn btn-info">Sign up for free</button>
		</div>
	</div>
	<div class="card shadow-sm border-0">
		<div class="card-header bg-primary border-0 pt-4 pb-4">
			<h3 class="my-0 font-weight-normal text-white mb-3">Premium</h3>
			<h4 class="card-title pricing-card-title text-white">$15 <small>/ mo</small></h4>
		</div>
		<div class="card-body">
			<ul class="list-unstyled mt-3 mb-4">
				<li>20 users included</li>
				<li>10 GB of storage</li>
				<li>Priority email support</li>
				<li>Help center access</li>
			</ul>
			<button type="button" class="btn btn-primary">Start Free</button>
		</div>
	</div>
	<div class="card border-0 shadow-sm">
		<div class="card-header bg-info border-0 pt-4 pb-4">
			<h3 class="my-0 font-weight-normal mb-3">Enterprise</h3>
			<h4 class="card-title pricing-card-title">$29 <small class="text-muted">/ mo</small></h4>
		</div>
		<div class="card-body">
			<ul class="list-unstyled mt-3 mb-4">
				<li>30 users included</li>
				<li>15 GB of storage</li>
				<li>Phone and email support</li>
				<li>Help center access</li>
			</ul>
			<button type="button" class="btn btn-info">Contact us</button>
		</div>
	</div>
</div>

Table

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
<!-- table -->
<table class="table">
<thead class="thead-dark">
<tr>
	<th scope="col"> #      </th>
	<th scope="col"> First	</th>
	<th scope="col"> Last	</th>
	<th scope="col"> Handle	</th>
</tr>
</thead>
<tbody>
<tr>
	<th scope="row"> 1	</th>
	<td> Mark </td>
	<td> Otto </td>
	<td> @mdo </td>
</tr>
<tr>
	<th scope="row"> 2	</th>
	<td> Jacob	  </td>
	<td> Thornton </td>
	<td> @fat     </td>
</tr>
<tr>
	<th scope="row"> 3	</th>
	<td> Larry    </td>
	<td> the Bird </td>
	<td> @twitter </td>
</tr>
</tbody>
</table>

Tooltips

Options:
  • Placement: data-placement="top/right/bottom/left"
Call: $(function () { $('[data-toggle="tooltip"]').tooltip() })
<!-- tooltips -->
<button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="" data-original-title="Tooltip on top">
On top </button>

<button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="right" title="" data-original-title="Tooltip on right">
On right </button>

<button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Tooltip on bottom">
On bottom </button>

<button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="left" title="" data-original-title="Tooltip on left">
On left </button>