I have a bootstrap row with a heading and an input field. Here is my code:
<div class="row mb-5">
<div class="col h1 text-white text-start text-center text-md-start text-lg-start">Welcome<input class="form-control no-border font-size" type="text" placeholder="Enter Name"></div>
</div>
The output I want is "Welcome name" with both words aligned side by side. However, the current output looks different as shown in the image below.
https://i.sstatic.net/4PUSV.png
Is there any way to style it using Bootstrap to achieve the desired output?