<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Grid Layouts for All Devices</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <style> /* Some custom styles to beautify this example */ p{ padding: 50px; font-size: 32px; font-weight: bold; text-align: center; background: #dbdfe5; } </style> </head> <body> <h2 class="text-center mt-3">Bootstrap Responsive Layout</h2> <div class="text-center my-3">To learn the how Bootstrap responsive grid system functions, view the result in a new empty tab (Press the arrow next to the "Show Results" button) and resize the browser window.</div> <div class="container-lg"> <div class="row"> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 1</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 2</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 3</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 4</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 5</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 6</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 7</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 8</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 9</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 10</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 11</p></div> <div class="col-xl-4 col-md-6 col-xxl-3"><p>Model 12</p></div> </div> </div> </body> </html>