Frontend assets

Now UI Dashboard is a premium Bootstrap 4 Admin Template.

Quick start

To start using the UI Kit you will need to import some files in your current project or start from scratch using our template (scroll down in this page to view it).

CSS

Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS.

<link rel="stylesheet" href="/assets/css/now-ui-dashboard.css">

JS

Many of our components require the use of JavaScript to function. Specifically, they require jQuery, Popper.js, and our own JavaScript plugins. Place the following <script>s near the end of your pages, right before the closing </body> tag, to enable them. jQuery must come first, then Popper.js, and then our JavaScript plugins.

<script src="../assets/js/core/jquery.min.js" type="text/javascript"></script>
<script src="../assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="../assets/js/core/bootstrap.min.js" type="text/javascript"></script>
<script src="../assets/js/plugins/perfect-scrollbar.jquery.min.js" type="text/javascript"></script>

<!-- Control Center for Now Ui Dashboard: parallax effects, scripts for the example pages etc -->
<script src="../assets/js/now-ui-dashboard.js" type="text/javascript"></script>

Fonts and Icons

Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load the Fonts and Icons.

<!--     Fonts and icons     -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
<link rel="stylesheet" href="<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">" />

Starter template

Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this:

<!doctype html>
<html lang="en">
  <head>
    <title>Hello, world!</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />

    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

    <!--     Fonts and icons     -->
    <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />

    <!-- Material Kit CSS -->
    <link href="../assets/css/bootstrap.min.css" rel="stylesheet" />
    <link href="../assets/css/now-ui-dashboard.css" rel="stylesheet" />

  </head>
  <body>
    <div class="wrapper">
    <div class="sidebar" data-color="orange">
  <!--
      Tip 1: You can change the color of the sidebar using: data-color="blue | green | orange | red | yellow"
  -->
      <div class="logo">
          <a href="http://www.creative-tim.com" class="simple-text logo-mini">
              CT
          </a>

          <a href="http://www.creative-tim.com" class="simple-text logo-normal">
            Creative Tim
          </a>
      </div>

      <div class="sidebar-wrapper" id="sidebar-wrapper">
        <ul class="nav">        
          <li class="active ">
              <a href="../dashboard.html">

                    <i class="now-ui-icons design_app"></i>

                  <p>Dashboard</p>
              </a>
          </li>

          <li>
              <a href="../icons.html">

                    <i class="now-ui-icons education_atom"></i>

                  <p>Icons</p>
              </a>
          </li>

          <li>
              <a href="../map.html">

                    <i class="now-ui-icons location_map-big"></i>

                  <p>Maps</p>
              </a>
          </li>

          <li>
              <a href="../notifications.html">

                    <i class="now-ui-icons ui-1_bell-53"></i>

                  <p>Notifications</p>
              </a>
          </li>

          <li>
              <a href="../user.html">

                    <i class="now-ui-icons users_single-02"></i>

                  <p>User Profile</p>
              </a>
          </li>

          <li>
              <a href="../tables.html">

                    <i class="now-ui-icons design_bullet-list-67"></i>

                  <p>Table List</p>
              </a>
          </li>

          <li>
              <a href="../typography.html">

                    <i class="now-ui-icons text_caps-small"></i>

                  <p>Typography</p>
              </a>
          </li>

          <li class="active-pro">
              <a href="../upgrade.html">

                    <i class="now-ui-icons arrows-1_cloud-download-93"></i>

                  <p>Upgrade to PRO</p>
              </a>
          </li>
        </ul>
      </div>
    </div>
  </div>
</body>
  <!--   Core JS Files   -->
  <script src="../assets/js/core/jquery.min.js" type="text/javascript"></script>
  <script src="../assets/js/core/popper.min.js" type="text/javascript"></script>
  <script src="../assets/js/core/bootstrap.min.js" type="text/javascript"></script>
  <script src="../assets/js/plugins/perfect-scrollbar.jquery.min.js" type="text/javascript"></script>

  <!-- Control Center for Now Ui Dashboard: parallax effects, scripts for the example pages etc -->
  <script src="../assets/js/now-ui-dashboard.js" type="text/javascript"></script>
</html>