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

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: colors

HTML code

This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 3.1.0 included, to get the result that you can see in the preview selection


<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

This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 3.1.0 included, to get the result that you can see in the preview selection


.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. bs5 dark footer

bs5 dark footer

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. chat app

chat app

Bootstrap example and template. white chat

white chat

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

About this bootstrap example/template

We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.

We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.

This code example currectly have 8.5K views, Using this bootstrap snippet you have the following benefits:

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