Seeking assistance with updating Bootstrap tabs to the latest version (Bootstrap 4). The current source code can be found here: https://codepen.io/srees/pen/pgVLbm
The issue lies in the fact that it utilizes Bootstrap 3 and lacks tab content.
I am aiming for a layout similar to this image: https://i.sstatic.net/G30Vz.png
If there are multiple tabs, users should be able to click an arrow to slide between them, akin to browsing tabs in a web browser.
This is the desired functionality I am striving to achieve:
<li class="nav-item">
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
<div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">...</div>
</div>