1.
Simple table using HTML 5
<html>
<head>
<title>Student Mark List</title>
</head>
<body>
<Table border=10 bordercolor=red width=75% height=50% cellspacing=10
cellpadding=20 bgcolor="yellow" background="[Link]">
<Caption>Student Mark List</caption>
<tr>
<th>Sl. No</th>
<th>Students' Name</th>
<th>CSC Theory</th>
<th>CSC Practical</th>
</tr>
<tr>
<th>1</th>
<th>Rani</th>
<th>50</th>
<th>50</th>
</tr>
<tr>
<th>2</th>
<th>Vani</th>
<th>45</th>
<th>48</th>
</tr>
</table >
</body>
</html>
2. Simple table using HTML and CSS
<html>
<head>
<title>Student Mark List</title>
<style>
caption{
font-size:40px;
color:red;
caption-side:bottom;
}
table{
background-color:yellow;
border:10px solid blue;
table-layout:fixed;
border-collapse:separate;
empty-cells:hide;
width:75%;
height:75%;
padding:10px 20px 10px 20px;
border-spacing:20px 40px;
}
th,td{
text-align:right;
vertical-align:bottom;
border:5px dashed red;
}
tr:hover{
background:cyan;
}
</style>
</head>
<body>
<Table>
<Caption>Student Mark List</caption>
<tr>
<th>Sl. No</th>
<th>Students' Name</th>
<th>CSC Theory</th>
<th>CSC Practical</th>
</tr>
<tr>
<th>1</th>
<th>Rani</th>
<th>50</th>
<th>50</th>
</tr>
<tr>
<th>2</th>
<th>Vani</th>
<th>45</th>
<th>48</th>
</tr>
</table >
</body>
</html>