ShapeYourPath
(current)
Run Code
Live Code Editor- Bootstrap 4 Inline Form
Source Code
<!DOCTYPE html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" /> <title>Bootstrap 4 Inline Form</title> </head> <body> <div class="container mt-4"> <h1>Bootstrap 4 Inline Form</h1> <p class="text-justify">Bootstrap inline form displays labels, form controls, and buttons on a single horizontal row.</p> <form class="form-inline"> <div class="form-group mr-2"> <label class="sr-only" for="inputEmail">Email</label> <input type="email" class="form-control" id="inputEmail" placeholder="Email" /> </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" /> </div> <button type="submit" class="btn btn-primary">Sign in</button> </form> </div> <!--/container--> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> </body> </html>
Output :
Running