0
For those confused about frames
Frameset replaces the <body> of a page and makes the page split into separate frames. Each frame can load separate html data simultaneously. For example: <html> <head> </head> <frameset cols="50%,50%"> <frame src=""> <frame src=""> </html> This webpage will have a vertical line going straight down the middle splitting it into 2 frames. Frameset src=“” is for the attributes and you need as many frameset src as specified By replacing frameset cols=“” with frameset rows=“” the line becomes horizontal.
0 odpowiedzi