I was trying this code but the tag name didn't show on URL when I click on <a>
. My friend told me to separate files but I don't want to. Is there anyway to solve this problem or Could you advice me any tips like this? I found this one but it's quite different from mine How do I link to part of a page? (hash?)
<div class="list-group">
<a class="list-group-item" href="#picture" data-toggle="tab">Picture</a>
<a class="list-group-item" href="#home" data-toggle="tab">Profile</a>
</div>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade" id="picture">
<h1>Picture</h1>
</div>
<div class="tab-pane fade" id="home">
<h1>Profile</h1>
</div>
</div>
P.S. it's Bootstrap