Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Placing Multiple Inputs within an Input Group in Bootstrap 4</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> <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text">Your Name</span> </div> <input type="text" class="form-control" placeholder="First name"> <input type="text" class="form-control" placeholder="Last name"> </div> </form> </div> </body> </html>