Watch Full Video That Given Below
<html>
<head>
<title>Frame Attribute in Table</title>
<style>
th{color: white; background:brown;}
</style>
</head>
<body>
<!--frame="void / lhs / rhs / box / vsides
/ hsides / above / below / border"-->
<h1>Farme Attribute</h1>
<table border width="80%"cellspacing="15"frame="vsides">
<tr>
<th>Student's Name</th>
<th>Batch Time</th>
<th>Course</th>
</tr>
<tr>
<td>Ram</td>
<td>10Am</td>
<td>10Am</td>
</tr>
</table>
</body>
</html>