Learning Center
Learning Center
  • HTML
  • CSS
  • JAVASCRIPT
  • Bootstrap
  • React
  • jQuery
  • NodeJs
  • Sql
  • MySql
  • Python
  • OpenVPN Setup
  • Log In
Coding Choice Home About Contact ☰

  1. You are here
  2. Home
  3. bootstrap
  4. table_example

Sidebar
  • Introduction
  • Setting Up Bootstrap
  • Basic Layout
  • Enhancing with Bootstrap Components
    • Buttons
    • Cards for Chapter Summaries
    • Alerts for Notes
  • Adding Images and Icons
  • Tables for Book Index
  • Creating a Responsive Sidebar
  • Interactivity with JavaScript
  • Share via
    • Share via...
    • Twitter
    • LinkedIn
    • Facebook
    • Pinterest
    • Telegram
    • WhatsApp
    • Yammer
    • Reddit
    • Teams
  • Send via e-Mail
  • Print
  • Permalink

Tables for Book Index

<table class="table table-striped">
    <thead>
        <tr>
            <th>Chapter</th>
            <th>Title</th>
            <th>Page</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td>Getting Started</td>
            <td>5</td>
        </tr>
        <tr>
            <td>2</td>
            <td>Advanced Concepts</td>
            <td>25</td>
        </tr>
    </tbody>
</table>