Computer Science, asked by psehrawat0011, 1 month ago

pls create an HTML COADING of thr picture given above​

Attachments:

Answers

Answered by anindyaadhikari13
7

Answer:

This is the required html códe for this question.

I have attached an image where you can see the output.

<!DOCTYPE html>

<html>

<head>

<title>Info</title>

</head>

<body bgcolor="yellow">

<h1 align="center">My Classmates</h1>

<table align="center" border=1 width="90%">

<thead bgcolor="pink">

<tr>

<td>S.No.

<td>Name

<td>Birthday

<td>Email Id

<td>Phone No.

</tr>

</thead>

<tbody>

<tr>

<td> 1

<td>Nitin

<td>12 June

<td>nitin @ yahoo.in

<td>2234574

</tr>

<tr>

<td>2

<td>Apoorva

<td>5 May

<td>ap_va @ kips.in

<td>2115574

</tr>

<tr>

<td>3

<td>Devinder

<td>12 April

<td>devi @ yahoo.in

<td>2545321

</tr>

<tr>

<td>4

<td>Sakshi

<td>09 March

<td>sak_sh @ yahoo.in

<td>2458751

</tr>

<tr>

<td>5

<td>Abhishek

<td>01 July

<td>abhi @ kips.in

<td>2995651

</tr>

</tbody>

</table>

</body>

</html>

Note that <td> tag has no closing tag. In some books, it might be written that <td> tag has closing tag. It is not mandatory to give </td>

Attachments:
Similar questions