Question: Which is the correct parent tag of <legend> tag?
A
B
C
D
fieldset
B
form
C
frame
D
table
Note: Not available
<html> <head> <title>index</title> </head> <frameset> <frame src="page1.htm" /> <frame src="page2.htm" /> <frame src="page3.htm" /> </frameset> </html>
<html> <head> <title>index</title> </head> <body> <frameset> <frame src="page1.htm" /> <frame src="page2.htm" /> <frame src="page3.htm" /> </frameset> </body> </html>
<html> <head> <title>index</title> </head> <body> <frameset> <frame href="page1.htm" /> <frame href="page2.htm" /> <frame href="page3.htm" /> </frameset> </body> </html>
<html> <body> <frameset> <frame href="page1.htm" /> <frame href="page2.htm" /> <frame href="page3.htm" /> </frameset> </body> </html>