HOW TO MAKE HTML Table Generator

Social Media Link
Whatsapp Group Link Click Here
Telegram Group Link Click Here
Instagram Link Click Here
Youtube Link Click Here




TABLE LINK 

<style>
#simple_table {
font-family: arial, sans-serif;
border-collapse: collapse; 
width: 100%;
background-color: #ffffff;
color:black;
}
#simple_table td, #simple_table th {
text-align: left;
padding: 8px;
border: 1px solid #808080;
}

#simple_table tr:hover {
background-color: #ffff99;
}
#simple_table tr > th 
{
background: #2b00ff;
color: #ffffff;
}
</style>
 <table id='simple_table' >
<tr>
<th>Social Media</th>
<th>Link</th>
</tr>

<tr>
<td>Whatsapp Group Link</td>
<td>Click Here</td>
</tr>
<tr>
<td>Telegram Group Link</td>
<td>Click Here</td>
</tr>
<tr>
<td>Instagram Link</td>
<td>Click Here</td>
</tr>
<tr>
<td>Youtube Link</td>
<td>Click Here</td>
</tr>
</table>