Bootstrap snippet and html example. shortcut menu

Bootstrap 3.3.7 snippet "shortcut menu" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.

HTML code

Clean, semantic HTML that powers this Bootstrap 3.3.7 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="col-md-8 col-sm-8">
   <div class="row">
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-car shortcut-icon icon-blue"></i></a>
            <a href="category.html">
               <h3>Car</h3>
            </a>
            <span class="total-items">234,567</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-motorcycle shortcut-icon icon-green"></i></a>
            <a href="category.html">
               <h3>Motorcycle</h3>
            </a>
            <span class="total-items">25,366</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-home shortcut-icon icon-brown"></i></a>
            <a href="category.html">
               <h3>Property</h3>
            </a>
            <span class="total-items">252,546</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-female shortcut-icon icon-violet"></i></a>
            <a href="category.html">
               <h3>Fashion</h3>
            </a>
            <span class="total-items">52,546</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-mobile-phone shortcut-icon icon-dark-blue"></i></a>
            <a href="category.html">
               <h3>Gadget</h3>
            </a>
            <span class="total-items">215,546</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-soccer-ball-o shortcut-icon icon-orange"></i></a>
            <a href="category.html">
               <h3>Sport</h3>
            </a>
            <span class="total-items">415,546</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-gears shortcut-icon icon-light-blue"></i></a>
            <a href="category.html">
               <h3>Industry</h3>
            </a>
            <span class="total-items">15,546</span>
         </div>
      </div>
      <div class="col-xs-4 col-sm-3">
         <div class="shortcut">
            <a href="category.html"><i class="fa fa-wrench shortcut-icon icon-light-green"></i></a>
            <a href="category.html">
               <h3>Job</h3>
            </a>
            <span class="total-items">152,546</span>
         </div>
      </div>
   </div>
</div>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 3.3.7 to keep the design, spacing, and responsiveness consistent.


body{margin-top:20px;}

/*==========Main & Widget=================*/
.wrapper{
    margin-top:70px !important;
}
.main{
	padding:30px 0;
	min-height: 460px;
}
.widget, .post, .box-content{
	background: #FFF;
	padding: 15px;
	border: 1px solid #DDD;
	border-radius: 5px;
	margin-bottom: 20px;
}

.widget h2,h3{
	margin: 0;
}

.widget h3{
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 700;
	color: #58b325;
}

.widget-header{
	border-bottom: 1px solid #E7E7E7;
	padding-bottom: 10px;
}

.widget-body{
	padding-top: 10px;
}

.widget-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-body ul li{
	padding: 3px 0;
}

.seller-avatar{
	height: 150px;
	width: 150px;
	border-radius: 100%;
	margin: 0 auto;
	padding: 2px;
	border: 1px solid #DDD;
}

.seller-name{
	margin-top: 15px !important;
	margin-bottom: 25px !important;
	font-size: 20px;
	font-weight: 600 !important;
}

.seller-detail{
	font-size: 14px;
}

.shortcut{
	background: #FFF;
	margin-bottom: 20px;
	text-align: center;
	border: 1px solid #DDD;	
	padding: 20px;
	border-radius: 5px;
}

.shortcut-icon{
	font-size: 50px;
}

.shortcut h3{
	font-size: 16px;
	margin-top: 10px;
	font-weight: 700;
}

.total-items{
	font-size: 12px;
	color: #CCC;
}

.icon-blue{
	color: #09639E;
}

.icon-blue:hover{
	color: #04568C;
}

.icon-green{
	color: #99cc33;
}
.icon-green:hover{
	color: #93C42F;
}

.icon-brown{
	color: #855410;
}

.icon-brown:hover{
	color: #633C06;
}

.icon-violet{
	color: #C406B4;
}

.icon-violet:hover{
	color: #B007A2;
}

.icon-dark-blue{
	color: #0C1D6B;
}

.icon-dark-blue:hover{
	color: #07175E;
}

.icon-orange{
	color: #F57F0A;
}

.icon-orange:hover{
	color: #D46D06;
}

.icon-light-blue{
	color: #1BA7DE;
}

.icon-light-blue:hover{
	color: #158DBD;
}

.icon-light-green{
	color: #149C7E;
}

.shortcut-icon {
    font-size: 50px;
}

.icon-light-green:hover{
	color: #098066;
}


.section-header{
	color: #58b325;
	text-transform: uppercase;	
	border-bottom: 1px solid #DDD;
	margin-bottom: 20px;
}

.section-header h2{
	font-size: 20px;
	font-weight: 700;
}

.item-numbers{
	font-size: 13px;
	color: #CCC;
}
/*===============Brands===============*/
.brands li label{
	font-weight: normal;
	cursor:pointer;
}

.brands li label:hover{
	color: #398110;
}

Similar snippets

Bootstrap example and template. shop user profile with ticket

shop user profile with ticket

Bootstrap example and template. bs4 beta user list with badges

bs4 beta user list with badges

Bootstrap example and template. Real State Property List

Real State Property List

Bootstrap example and template. card activity

card activity

Bootstrap example and template. Small Log in box in panel

Small Log in box in panel

Bootstrap example and template. bs4 card widget

bs4 card widget

Bootstrap example and template. bs4 cv profile

bs4 cv profile

Bootstrap example and template. Confirm registration email

Confirm registration email

FAQ

How do I use this snippet?

Include Bootstrap 3.3.7, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 3.3.7.

Bootstrap example and template. shortcut menu

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 1.4K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 3.3.7

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.3.7 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working