Computer Science, asked by ad0108, 9 months ago

Write html code to produce following table. Emergency, tomorrow is my exam

Attachments:

Answers

Answered by sahilthekiller
3

Answer:

<html>

<head>

<title>my web page </title>

</head>

<body>

<table border=4>

<TR>

<TD> A </TD>

<TD> D </TD>

</TR>

<TR>

<TD> B </TD>

<TD> E </TD>

</TR>

<TR>

<TD> C </TD>

<TD> F </TD>

</TR>

</table>

</body>

</html>

Explanation:

TD: Table data or table column and TR: Table row I hope it is helpful for you

Similar questions