---
title: "Active toggleable Bootstrap tab"  
description: "Active toggleable Bootstrap tab"  
author: "Ethan Karla"  
published: 2021-07-28  
updated: 2021-07-28  
canonical: https://www.mindstick.com/forum/156616/active-toggleable-bootstrap-tab  
category: "bootstrap"  
tags: ["bootstrap"]  
reading_time: 1 minute  

---

# Active toggleable Bootstrap tab

How to make an [active](https://answers.mindstick.com/qa/97113/why-does-an-active-ftp-not-work-with-network-firewalls) toggleable [Bootstrap tab](https://www.mindstick.com/forum/12951/how-to-fix-bootstrap-tab-vertical-with-text)?

## Replies

### Reply by Anonymous User

To make a Active Toggleable [Bootstrap](https://www.mindstick.com/articles/1555/image-viewer-using-bootstrap-carousel) tabs see the below example:

```
<!DOCTYPE html>
<html lang='en'>
<head>
  <title>Bootstrap Example</title>
  <meta charset='utf-8'>
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css'>
  <script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
  <script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js'></script>
  <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js'></script>
</head>
<body>
<div class='container'>
  <h2>Active Toggleable Bootstrap Tabs</h2>
  <br>
  <ul class='nav nav-tabs' role='tablist'>
    <li class='nav-item'>
      <a class='nav-link active' data-toggle='tab' href='#home'>Home</a>
    </li>
    <li class='nav-item'>
      <a class='nav-link' data-toggle='tab' href='#menu1'>About</a>
    </li>
  </ul>
  <div class='tab-content'>
    <div id='home' class='container tab-pane active'><br>
      <h3>Home</h3>
      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy.</p>
    </div>
    <div id='menu1' class='container tab-pane fade'><br>
      <h3>About</h3>
      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy.</p>
    </div>
  </div>
</div>
</body>
</html>
```

Hope this will help you.

Happy Coding!


---

Original Source: https://www.mindstick.com/forum/156616/active-toggleable-bootstrap-tab

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
