Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> <style> body { padding-top: 1em; } </style> <div class="container-fluid"> <ul class="list-group"> <li class="list-group-item d-flex justify-content-between align-items-center"> These Boots Are Made For Walking <span class="badge bg-primary rounded-pill">15</span> </li> <li class="list-group-item d-flex justify-content-between align-items-center"> Eleanor, Put Your Boots On <span class="badge bg-primary rounded-pill">38</span> </li> <li class="list-group-item d-flex justify-content-between align-items-center"> Puss 'n' Boots <span class="badge bg-primary rounded-pill">76</span> </li> <li class="list-group-item d-flex justify-content-between align-items-center"> Die With Your Boots On <span class="badge bg-primary rounded-pill">112</span> </li> <li class="list-group-item d-flex justify-content-between align-items-center"> Fairies Wear Boots <span class="badge bg-primary rounded-pill">181</span> </li> </ul> </div> <!-- Bundled --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>