Bootstrap snippet and html example. list projects

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: project,list,table

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.3.4 included, to get the result that you can see in the preview selection

<div class="container bootstrap snippets bootdey">
    <div class="table-responsive">
    	<!-- PROJECT TABLE -->
    	<table class="table colored-header datatable project-list">
    		<thead>
    			<tr>
    				<th>Title</th>
    				<th>Date Start</th>
    				<th>Days to Deadline</th>
    				<th>Progress</th>
    				<th>Priority</th>
    				<th>Leader</th>
    				<th>Status</th>
    			</tr>
    		</thead>
    		<tbody>
    			<tr>
    				<td><a href="#">Spot Media</a></td>
    				<td>18-05-2014</td>
    				<td>12 days</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar" data-transitiongoal="95" aria-valuenow="95" style="width: 95%;">95%</div>
    					</div>
    				</td>
    				<td><span class="label label-warning">MEDIUM</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="Avatar" class="avatar img-circle"> <a href="#">Michael</a></td>
    				<td><span class="label label-success">ACTIVE</span></td>
    			</tr>
    			<tr>
    				<td><a href="#">E-Commerce Site</a></td>
    				<td>24-05-2014</td>
    				<td>30 days</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar" data-transitiongoal="40" aria-valuenow="40" style="width: 40%;">40%</div>
    					</div>
    				</td>
    				<td><span class="label label-success">LOW</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="Avatar" class="avatar img-circle"> <a href="#">Antonius</a></td>
    				<td><span class="label label-warning">PENDING</span></td>
    			</tr>
    			<tr>
    				<td><a href="#">Project 123GO</a></td>
    				<td>20-09-2014</td>
    				<td>50 days</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar" data-transitiongoal="65" aria-valuenow="65" style="width: 65%;">65%</div>
    					</div>
    				</td>
    				<td><span class="label label-danger">HIGH</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="Avatar" class="avatar"> <a href="#">Antonius</a></td>
    				<td><span class="label label-success">ACTIVE</span></td>
    			</tr>
    			<tr>
    				<td><a href="#">Wordpress Theme</a></td>
    				<td>05-10-2014</td>
    				<td>40 days</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar" data-transitiongoal="77" aria-valuenow="77" style="width: 77%;">77%</div>
    					</div>
    				</td>
    				<td><span class="label label-warning">MEDIUM</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="Avatar" class="avatar"> <a href="#">Michael</a></td>
    				<td><span class="label label-success">ACTIVE</span></td>
    			</tr>
    			<tr>
    				<td><a href="#">Redesign Landing Page</a></td>
    				<td>15-11-2014</td>
    				<td>30 days</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar" data-transitiongoal="25" aria-valuenow="25" style="width: 25%;">25%</div>
    					</div>
    				</td>
    				<td><span class="label label-success">LOW</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="Avatar" class="avatar"> <a href="#">Jason</a></td>
    				<td><span class="label label-success">ACTIVE</span></td>
    			</tr>
    			<tr>
    				<td><a href="#">Wordpress Theme</a></td>
    				<td>05-10-2014</td>
    				<td>N/A</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar progress-bar-default" data-transitiongoal="100" aria-valuenow="100" style="width: 100%;">100%</div>
    					</div>
    				</td>
    				<td><span class="label label-default">MEDIUM</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="Avatar" class="avatar"> <a href="#">Michael</a></td>
    				<td><span class="label label-default">CLOSED</span></td>
    			</tr>
    			<tr>
    				<td><a href="#">Redesign Landing Page</a></td>
    				<td>15-11-2014</td>
    				<td>30 days</td>
    				<td>
    					<div class="progress">
    						<div class="progress-bar" data-transitiongoal="33" aria-valuenow="33" style="width: 33%;">33%</div>
    					</div>
    				</td>
    				<td><span class="label label-success">LOW</span></td>
    				<td><img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="Avatar" class="avatar"> <a href="#">Jason</a></td>
    				<td><span class="label label-warning">PENDING</span></td>
    			</tr>
    		</tbody>
    	</table>
    	<!-- END PROJECT TABLE -->
    </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.3.4 included, to get the result that you can see in the preview selection

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #555;
  background: #ececec;
  margin-top:20px;
}

.project-list > tbody > tr > td {
  padding: 12px 8px;
}

.project-list > tbody > tr > td .avatar {
  width: 22px;
  border: 1px solid #CCC;
}

Similar snippets

Bootstrap example and template. Team testimonials

Team testimonials

Bootstrap example and template. bs4 new friends panel

bs4 new friends panel

Bootstrap example and template. Recent blog post title

Recent blog post title

Bootstrap example and template. Members

Members

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. Invoice

Invoice

Bootstrap example and template. simple invoice receipt email template

simple invoice receipt email template

Bootstrap example and template. career list

career list

Bootstrap example and template. list projects

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 13.6K views, Using this bootstrap snippet you have the following benefits:

Bootstrap 3.3.4

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

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

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