Advertisements
Advertisements
प्रश्न
Write HTML code to create the following table:

संक्षेप में उत्तर
Advertisements
उत्तर
HTML CODE:
<html>
<head>
<title> Table with Attribute </title>
</head>
<body>
<table cellspacing=10 cellpadding=10 border=10
bordercolor=blue align=center bgcolor=yellow
width = 50%>
<TR>
<TH ROWSPAN = 3 > A </TH>
<TH COLSPAN = 4> B </TH>
<TR>
<TH> C </TH>
<TH> D </TH>
<TH> E </TH>
<TH ROWSPAN = 2> G </TH>
</TR>
<TR>
<TH COLSPAN = 3> F </TH>
</TR>
</TR>
</table>
</body>
</html>
OUTPUT:

shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
