Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 4 Inline Form Layout</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 20px; } </style> </head> <body> <div class="bs-example"> <form class="form-inline" action="/examples/actions/confirmation.php" method="post"> <div class="form-group mr-2"> <label class="sr-only" for="inputEmail">Email</label> <input type="email" class="form-control" id="inputEmail" placeholder="Email" required> </div> <div class="form-group mr-2"> <label class="sr-only" for="inputPassword">Password</label> <input type="password" class="form-control" id="inputPassword" placeholder="Password" required> </div> <div class="form-group mr-2"> <label><input type="checkbox" class="mr-1"> Remember me</label> </div> <button type="submit" class="btn btn-primary">Sign in</button> </form> </div> </body> </html>