Activituy-8 Aman Kumar
Activituy-8 Aman Kumar
12407063
CODE:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Document</title>
<style>
.table-container{
border: 2px solid black;
border-radius: 30px;
width: 30%;
padding: 20px;
}
.table-2{
border: 2px dotted black;
padding: 10px;
border-radius: 10px;
}
.marks-table{
border: 2px solid black;
text-align: center;
padding: 10px;
font-size: 24px;
margin-top: 10px;
border-radius: 10px;
}
.table-4{
border: 2px dotted black;
padding: 10px;
border-collapse: collapse;
margin-top: 10px;
td,th{
border: 5px solid black;
padding: 10px;
}
td{
border-top: none;
border-bottom: none;
text-align: center;
}
</style>
</head>
<body>
<center>
<div class="table-container">
<div class="table-2">
<div class="marks-table">
<strong><b>Marks Table</b></strong></div>
<div class="table-4">
<div class="table-5">
<table>
<thead>
<tr>
<th>Student</th>
<th>Maths</th>
<th>Physics</th>
<th>Computer Science</th>
</tr>
</thead>
<tbody>
<tr>
<td>Name</td>
<td>54</td>
<td>32</td>
<td>23</td>
</tr>
<tr>
<td>Name</td>
<td>54</td>
<td>32</td>
<td>23</td>
</tr>
<tr>
<td>Name</td>
<td>54</td>
<td>32</td>
<td>23</td>
</tr>
<tr>
<td>Name</td>
<td>54</td>
<td>32</td>
<td>23</td>
</tr>
</div>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</center>
</body>
</html>