Bootstrap snippet and html example. Bootstrap 3 colors progress bar with titles

Bootstrap 3.1.0 snippet "Bootstrap 3 colors progress bar with titles" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: colors

HTML code

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


<div class="container bootstrap snippets bootdey">
    <div class="row">
        <div class="col-sm-3">
    		<div class="tile-progress tile-primary">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="65.5%" style="width: 65.5%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">65.5</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    	<div class="col-sm-3">
    		<div class="tile-progress tile-red">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="23.2%" style="width: 23.2%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">23.2</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    	<div class="col-sm-3">
    		<div class="tile-progress tile-blue">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="78%" style="width: 78%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">78</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    	<div class="col-sm-3">
    		<div class="tile-progress tile-aqua">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="22%" style="width: 22%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">22</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    </div>
    <div class="row">
        <div class="col-sm-3">
    		<div class="tile-progress tile-green">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="94%" style="width: 94%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">94</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    	<div class="col-sm-3">
    		<div class="tile-progress tile-cyan">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="45.9%" style="width: 45.9%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">45.9</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    	<div class="col-sm-3">
    		<div class="tile-progress tile-purple">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="27%" style="width: 27%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">27</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    	<div class="col-sm-3">
    		<div class="tile-progress tile-pink">
    			<div class="tile-header">
    				<h3>Visitors</h3>
    				<span>so far in our blog, and our website.</span>
    			</div>
    			<div class="tile-progressbar">
    				<span data-fill="3" style="width: 3%;"></span>
    			</div>
    			<div class="tile-footer">
    				<h4>
    					<span class="pct-counter">3</span>% increase
    				</h4>
    				<span>so far in our blog and our website</span>
    			</div>
    		</div>
    	</div>
    </div>
</div>                                  

CSS code

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


.tile-progress {
background-color: #303641;
color: #fff;
}
.tile-progress {
background: #00a65b;
color: #fff;
margin-bottom: 20px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.tile-progress .tile-header {
padding: 15px 20px;
padding-bottom: 40px;
}
.tile-progress .tile-progressbar {
height: 2px;
background: rgba(0,0,0,0.18);
margin: 0;
}
.tile-progress .tile-progressbar span {
background: #fff;
}
.tile-progress .tile-progressbar span {
display: block;
background: #fff;
width: 0;
height: 100%;
-webkit-transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
-moz-transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
-o-transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
transition: all 1.5s cubic-bezier(0.230,1.000,0.320,1.000);
}
.tile-progress .tile-footer {
padding: 20px;
text-align: right;
background: rgba(0,0,0,0.1);
-webkit-border-radius: 0 0 3px 3px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 3px 3px;
-moz-background-clip: padding;
border-radius: 0 0 3px 3px;
background-clip: padding-box;
-webkit-border-radius: 0 0 3px 3px;
-moz-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
}
.tile-progress.tile-red {
background-color: #f56954;
color: #fff;
}
.tile-progress {
background-color: #303641;
color: #fff;
}
.tile-progress.tile-blue {
background-color: #0073b7;
color: #fff;
}
.tile-progress.tile-aqua {
background-color: #00c0ef;
color: #fff;
}
.tile-progress.tile-green {
background-color: #00a65a;
color: #fff;
}
.tile-progress.tile-cyan {
background-color: #00b29e;
color: #fff;
}
.tile-progress.tile-purple {
background-color: #ba79cb;
color: #fff;
}
.tile-progress.tile-pink {
background-color: #ec3b83;
color: #fff;
}                                  

Similar snippets

Bootstrap example and template. bs4 Contacts cards

bs4 Contacts cards

Bootstrap example and template. Social network login with buttons

Social network login with buttons

Bootstrap example and template. bs4 account tickets

bs4 account tickets

Bootstrap example and template. Bootstrap 3 Toggle Switch buttons

Bootstrap 3 Toggle Switch buttons

Bootstrap example and template. Bootstrap Google Plus Style Login Form

Bootstrap Google Plus Style Login Form

FAQ

How do I use this snippet?

Include Bootstrap 3.1.0, 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.1.0.

Bootstrap example and template. Bootstrap 3 colors progress bar with titles

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 10.1K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 3.1.0

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

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

This code example is based on bootstrap 3.1.0 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