Computer Science, asked by dkavyasri13, 1 year ago

Write the HTML code to generate the following output of a table with the content
exactly in the same format as shown within the table:
see the picture given in the attachment

Attachments:

dkavyasri13: please write someone
dkavyasri13: write teh answer tomorrow si my exam
dkavyasri13: u will get good points
dkavyasri13: please help...............
dkavyasri13: write fast the answer

Answers

Answered by Lipimishra2
70
<!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>
      

dkavyasri13: iam saying for my brother shreyas not u
dkavyasri13: kk bye
dkavyasri13: all the best all of u
dkavyasri13: for exams
Lipimishra2: Ya all the best to u too!
1st: http://brainly.in/question/301095
1st: plz answer this one plzzzzzzz
dkavyasri13: thanks
dkavyasri13: and same too u
Answered by rajuanushree
37
<html><title><body><table>
<tr>
<td>ADMNO</td>
<td>SNAME</td>
<td>NAME</td>
<td>DOB</td></tr>
<tr>
<td>JS04567</td>
<td>Agarwal</td>
<td>Rajesh</td>
<td>4-Mar-1998</td>
</table></body

dkavyasri13: thank u
Similar questions