---
title: "how to design table using bootstrap"  
description: "The HTML tables are used to present data in grid format like row and columns. See the tutorial on HTML Tables to learn more about tables."  
author: "Anonymous User"  
published: 2019-02-06  
updated: 2022-12-26  
canonical: https://www.mindstick.com/articles/43918/how-to-design-table-using-bootstrap  
category: "bootstrap"  
tags: ["bootstrap", "bootstrap framework"]  
reading_time: 2 minutes  

---

# how to design table using bootstrap

## [Introduction](https://www.mindstick.com/blog/359/iphone-development-introduction):

In this [tutorial](https://yourviews.mindstick.com/view/81591/semrush-tutorial-and-review-2020-how-to-use-it-to-20x-your-website-traffic) you'll learn how to design a table using Bootstrap.

## Description:

The HTML [tables](https://www.mindstick.com/articles/336597/introduction-of-html-tables-for-web-development) are used to [present](https://yourviews.mindstick.com/audio/1329/how-being-present-enhances-creativity-and-joy) data in grid format like row and columns.

See the tutorial on HTML Tables to learn more about tables.

Creating a Simple Table with Bootstrap :

You can create tables with basic styling that has horizontal dividers and small cell padding (8px by [default](https://www.mindstick.com/interview/2204/what-are-the-new-enhancements-done-in-default-project-template-of-asp-dot-net-mvc-4)), by just adding Bootstrap's table class.,

<![DOCTYPE](https://www.mindstick.com/interview/23388/what-is-the-importance-of-the-html-doctype) html> \
<html lang='en'> \
<head> \
<meta charset='utf-8'> \
<meta http-equiv='X-UA-Compatible' [content](https://www.mindstick.com/articles/12369/cms-extension-for-magento-2-advanced-content-manager-2)='IE=edge'> \
<meta name='viewport' content='width=[device](https://answers.mindstick.com/qa/105134/what-are-the-best-practices-for-byod-bring-your-own-device-in-business)-width, initial-scale=1'> \
<title>Example of Bootstrap 3 Simple Tables</title> \
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'> \
<[script](https://answers.mindstick.com/qa/116582/from-idea-to-launch-polymarket-clone-script-for-entrepreneurs) src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'></script> \
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'></script> \
<style type='text/css'> \
.bs-example { \
margin: 20px; \
} \
</style> \
</head> \
<body> \
<div class='bs-example'> \
<table class='table'> \
<thead> \
<tr> \
<th>Row</th> \
<th>First Name</th> \
<th>Last Name</th> \
<th>Email</th> \
</tr> \
</thead> \
<tbody> \
<tr> \
<td>1</td> \
<td>rajeev</td> \
<td>kumar</td> \
<td>rajeev@mail.com</td> \
</tr> \
<tr> \
<td>2</td> \
<td>pawan</td> \
<td>singh</td> \
<td>pawan@mail.com</td> \
</tr> \
<tr> \
<td>3</td> \
<td>rohit</td> \
<td>john</td> \
<td>rohit@mail.com</td> \
</tr> \
</tbody> \
</table> \
</div> \
</body> \
</html>

The output of the above example will look something like this:

![how to design table using bootstrap](https://www.mindstick.com/mindstickarticle/4f030ec8-0ed8-488c-9e7c-2ae5d28e493a/images/1d4b6a79-6cea-41a7-a484-d2551d48648e.png)\

**Also, Read** [how to design table using bootstrap](https://www.mindstick.com/articles/43918/how-to-design-table-using-bootstrap)

\

\

---

Original Source: https://www.mindstick.com/articles/43918/how-to-design-table-using-bootstrap

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
