Bootstrap Container Layout
Preview
Code
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <div class="container py-5"> <h2>Container Example</h2> <p>This content is centered using Bootstrap container.</p> </div> </body> </html>