Computer Science, asked by krishnathakkr410, 8 months ago

What will be the HTML code for the
following output?​

Answers

Answered by 57heenaanzar
1

Answer:

<!DOCTYPE html>

<html>

<head>

<style>

table, th, td {

border: 1px solid black; border-collapse: collapse

;}

th, td { padding: 5px;}

th

{ text-align: left;}

</style>

</head>

<body>

<table style="width:100%">

<tr>

<th>ADMNO</th>

<th>SNAME</th> <th>DOB</th>

<th>NAME</th>

</tr>

<tr>

<td>JS04567</td> <td>Agarwal</td>

<td>Rajesh</td> <td>4-March-1998</td>

</tr>

</body>

</html>

Explanation:

If you like my answer then mark me as a brainliest

Similar questions