For those confused about frames | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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.

2nd Mar 2018, 7:12 PM
PathFinder
PathFinder - avatar
0 Answers