Computer Science, asked by bidarissangriang1, 7 months ago

Define Definition list. write the code to generate the following output​

Answers

Answered by Anonymous
1

Answer:

please mark branlist answer

Explanation:

<!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>NAME</th>

      <th>DOB</th>

 </tr>

<tr>

   <td>JS04567</td>

   <td>Agarwal</td>

 <td>Rajesh</td>

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

</tr>

</body>

</html>

     

Similar questions