copy paste on metadata store
`<div class="tab_container col-12 mt-10">
<input checked="" id="tab1" name="tabs" type="radio">
<label for="tab1"><i class="fa fa-code"></i>
<img src="https://i.ibb.co/xCfH9bb/logo-diskon-512.png" alt="logo-diskon-512" border="0" width="20px" height="20px"> Promo</label>
<input id="tab2" name="tabs" type="radio">
<label for="tab2"><i class="fa fa-code"></i>
<img src="https://i.ibb.co/4FxHhrw/jadwal.png" alt="jadwal" border="0" width="20px" height="20px"> Jam Operasional</label>
<input id="tab3" name="tabs" type="radio">
<label for="tab3"><i class="fa fa-code"></i>
<img src="https://i.ibb.co/SnYwdWx/location.png" alt="location" border="0" width="20px" height="20px"> Alamat Restoran</label>
<section class="tab-content col-12 mt-10" id="content1">
<img src="https://i.ibb.co/qmYxBZ6/TAGAR-CANDI.jpg" alt="top-up" border="0" width="300" height="100">
</section>
<section class="tab-content col-12 mt-10" id="content2">
<p>Senin : 09.00 - 22.00</p>
<p>Selasa : 09.00 - 22.00</p>
<p>Rabu : 09.00 - 22.00</p>
<p>Kamis : 09.00 - 22.00</p>
<p>Jumat : 09.00 - 22.00</p>
<p>Sabtu : 09.00 - 22.00</p>
<p>Minggu : 09.00 - 22.00</p>
</section>
<section class="tab-content col-12 mt-10" id="content3">
JL. H. Noer (Halaman Toko Karunia), Sugihwaras, Candi, Sidoarjo
<br>
<br>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d247.24306011476614!2d112.70248352153223!3d-7.477512452381337!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2dd7e11f5a1994d1%3A0xd771638ceb8d8021!2sTahu%20Garing%20TAGAR%20Candi!5e0!3m2!1sid!2sid!4v1618081054607!5m2!1sid!2sid" width="300" height="200" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</section>
</div>`
copy paste on custom css
`.tab_container{
width: 100%;
margin: auto;
padding-top: 0;
position: relative;
}
input,section{
clear:both;
display:none
}
label{
text-align: center;
font-weight: 700;
font-size: 10px;
display: block;
float: left;
width: 33%;
color: #999;
cursor: pointer;
text-decoration: none;
text-align: center;
background: transparent;
padding-bottom: 10px;
}
#tab1:checked ~ #content1,#tab2:checked ~ #content2,#tab3:checked ~ #content3,#tab4:checked ~ #content4,#tab5:checked ~ #content5{display:block;padding-left:10px;color:#999;padding-bottom:10px;}
.tab_container .tab-content p,.tab_container .tab-content h3{-webkit-animation:fadeInScale 0.7s ease-in-out;-moz-animation:fadeInScale 0.7s ease-in-out;animation:fadeInScale 0.7s ease-in-out}
.tab_container .tab-content h3{text-align:center}
.tab_container [id^="tab"]:checked + label{box-shadow:inset 0 3px rgb(255 197 53);}
.tab_container [id^="tab"]:checked + label .fa{color:rgb(255 197 53);}
label .fa{
font-size: 1.5em;
display: inline-block;
width: 100%;
height: auto;
float: center;
padding: 0.5em;
margin: auto;
}
/Media query/
@media only screen and (max-width:900px){
label span{display:none}
.tab_container{width: 98%;}
}
/Content Animation/
@keyframes fadeInScale{
0%{transform:scale(0.9);opacity:0}
100%{transform:scale(1);opacity:1}
}
.clearfix:before,.clearfix:after{content:" ";display:table}`