Advertisements
Advertisements
Question
Write an HTML Code for following :
Year | Students | ||
Boys | Girls | Total | |
2004 | 25 | 30 | 55 |
2005 | 80 | 25 | 105 |
Record
Answer in Brief
Solution
< HTML >
< BODY >
< TABLE border = “1” >
< Caption align = “ bottom” > Record < / caption >
< TR >
< TH rowspan = 2 > Year
< TH colspan = 3 > Students
< /TR >
< TR >
< TD > Boys
< TD > Girls
< TD > Total
< /TR >
< TR >
< TD > 2004
< TD > 25
< TD > 30
< TD > 55
< /TR >
< TR >
< TD > 2005
< TD > 80
< TD > 25
< TD > 105
< /TR >
< /TABLE >
< /BODY >
< /HTML >
shaalaa.com
Hyper Text Markup Language (HTML)
Is there an error in this question or solution?