Table using colspan and rowspan | HTML Table using Rowspan and Colspan | Rowspan Colspan attribute

Опубликовано: 04 Октябрь 2024
на канале: Safdar Dogar
4,127
26

In This Video We Learn How To Create Complex Table Using Colspan and Rowspan in HTML in urdu/hindi


Rowspan Table in html
Colspan Table in html
Table using Rowspan and Colspan
Table using Rowspan and Colspan in HTML
Rowspan and Colspan Table in html
HTML Table Rowspan and Colspan Attribute
HTML Table using Rowspan and Colspan
HTML Table Tag Rowspan and Colspan Attribute

Example:

[html]
[head]
[title]HTML TABLE: ROWSPAN , COLSPAN[/title]
[/head]
[body]
[br]
[br]
[br]
[h4 align="center"]TABLE USING COLSPAN, ROWSPAN[/h4]
[table border=”1″ height=”50%” width=”50%” align="center" bgcolor="green" style="color:white"]
[tr]
[td rowspan="9"]A[/td]
[td rowspan="8"]B[/td]
[td rowspan="7"]C[/td]
[td rowspan="6"]D[/td]
[td rowspan="5"]E[/td]
[td rowspan="4"]F[/td]
[td]AH[/td]
[td rowspan="4"]H[/td]
[td rowspan="5"]I[/td]
[td rowspan="6"]J[/td]
[td rowspan="7"]K[/td]
[td rowspan="8"]L[/td]
[td rowspan="10"]M[/td]

[/tr]
[tr]
[td]H[/td]
[/tr]
[tr]
[td]GH[/td]
[/tr]
[tr]
[td]N[/td]
[/tr]
[tr]
[td colspan="3" align="center"]O[/td]
[/tr]
[tr]
[td colspan="5" align="center"]P[/td]
[/tr]
[tr]
[td colspan="7" align="center"]Q[/td]
[/tr]
[tr]
[td colspan="2"]R[/td]
[td]S[/td]
[td]T[/td]
[td]U[/td]
[td]V[/td]
[td]W[/td]
[td colspan="2"]X[/td]
[/tr]
[tr]
[td colspan="11" align="center"]Y[/td]
[/tr]
[tr]
[td colspan="2"]Z[/td]
[td]1[/td]
[td]2[/td]
[td]3[/td]
[td]4[/td]
[td]5[/td]
[td]6[/td]
[td]7[/td]
[td]8[/td]
[td]9[/td]
[td]10[/td]
[/tr]
[/table]
[/body]
[/html]