With Bootstrap 5, I've managed to implement tab content that remains visible regardless of the active tab:
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="23414c4c57505751425363160d100d130e424f534b4212">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- Tabs navs -->
<ul class="nav nav-tabs" id="tabNavs01">
<li class="nav-item"><a id="t-customer" data-bs-toggle="tab" class="nav-link active" href="#tabcustomer">customer</a></li>
<li class="nav-item"><a id="t-position" data-bs-toggle="tab" class="nav-link" href="#tabposition">position</a></li>
</ul>
<!-- Tabs content -->
<div class="tab-content col-md-7 flex-nowrap" id="tabCont01">
<div class="tab-pane fade show active" id="tabcustomer">
<div class="input-group flex-nowrap">
<h2>ENTER: </h2>
<input type="text" value="" name="" id="txtcustomer" placeholder="customer" class="form-control add-main" onclick="validatecustomer();">
<input type="text" value="" name="" id="txtcomputer" placeholder="computer" class="form-control add-computer" onclick="validatecustomer();">
</div>
</div>
<div class="tab-pane fade" id="tabposition">
<div class="input-group flex-nowrap">
<h2>ENTER: </h2>
<input type="text" value="" name="" id="txtposition" placeholder="position" class="form-control position-box" onclick="searchByposition();">
</div>
</div>
<div>
<label><strong>Testing</strong></label>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3b5954544f484f495a4b7b0e1508150b165a574b535a0a">[email protected]</a>/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
This setup results in the "Testing" section being displayed in both tabs as intended:
https://i.sstatic.net/ePqcf.png
I'm looking to place this "Testing" text to the right of both tabs. Specifically, I want it inside the white area and aligned with the words "ENTER" like shown here:
https://i.sstatic.net/jHJMH.png
Update
Thank you Kameron for your helpful solution below. If I wanted to include some SVG images in this section, such as Facebook or Twitter icons, would that be feasible?