How can I set the "All" tab to be selected by default when the page loads, with the text color black and underlined?
.publisher-tab {
background-color: rgb(255, 255, 255) !important;
color: #B3B3B3;
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
font-size: 16px;
border-radius: 10px 0 0 0;
border: none;
}
.publisher-tab:hover {
color: black;
text-decoration: underline 4px;
}
.supporter-tab {
background-color: rgb(255, 255, 255) !important;
color: #B3B3B3;
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 16px;
border: none;
}
.supporter-tab:hover {
color: black;
text-decoration: underline 4px;
}
.supporter-tab1 {
background-color: rgb(255, 255, 255) !important;
color: #B3B3B3;
font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 16px;
border-radius: 0 10px 0 0;
border: none;
}
.supporter-tab1:hover {
color: black;
text-decoration: underline 4px;
}
<ul class="nav" id="myTab" role="tablist">
<li style="width: 18%;">
<a class="nav-link publisher-tab active" id="all-tab" data-toggle="tab" href="#all" role="tab" aria-controls="all" aria-selected="true">All</a>
</li>
<li style="width: 18%;">
<a class="nav-link supporter-tab" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="false">VIP</a>
</li>
<li style="width: 18%;">
<a class="nav-link supporter-tab1" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Normal</a>
</li>
</ul>