Computer Science, asked by viratsrivastva, 9 months ago

Create table with use of html programming. (CITY)
AHMEDABAD
CHANDIGARH
LUCKNOW
(PINCODE)
380001
160022
226024
(LANGUAGE)
GUJRATI
HINDI​

Answers

Answered by PrincessAishwarya
1

Answer:

<html>

<body>

<table BORDER="5">

<tr>

<th>CITY</th>

<th>PINCODE</th>

<th>LANGUAGE</th>

</tr>

<tr>

<td>AHMEDABAD</TD>

<td>CHANDIGARH</TD>

<td>LUCKNOW</TD>

</tr>

<TR>

<TD>380001</TD>

<TD>160022</TD>

<TD>226024</TD>

</TR>

<TR>

<TD>GUJRATI</TD>

<TD>HINDI</TD>

</TR>

</TABLE>

</BODY>

</HTML>

Explanation:

Similar questions
Math, 9 months ago