<!DOCTYPE html>
<head>
<link href="https://fonts.google.com/specimen/Poppins?preview.size=20" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-12">
<h1>Kalyan The Coder</h1>
</div>
</div>
</div>
</header>
<div class="main">
<div class="container">
<div class="row">
<form class="form">
<div class="col-xs-8 col-md-10">
<input type="text" id="TextBox1" placeholder="Enter your query">
</div>
<div class="col-xs-4 col-md-2">
<button type="submit" class="button">post</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
After implementing this code, I encountered an issue where the button does not display next to the input box as expected. Instead, it appears below the text input box. I have tried placing the button inside the form element but still no success.