frameset in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

frameset in html

I make two cols frame. In left frame I write 3 links and I want to open this link in right frame.only the first link is open in right frame and the other it not open. can anybody tell me whats wrong or mistake frameset code: <html> <head> </head> <frameset cols="40,*"> <frame src="f1.html"> <frame name="f11"> </frameset> </html> left frame code: <html> <head> <title>frameset1</title> </head> <body> <h1>heading</h1> <a href="https://www.sololearn.com/Play/HTML" target="f11">sololearn</a> <br/> <a href="https://www.w3schools.com/html/default.asp" target="f11">w3school </a> <br/> <a href="https://www.youtube.com/watch?v=RyzjBWNPArs" target="f11">frameset</a> </body> </html> right frame code: <html> <head> <title>frameset1</title> </head> <body> </body> </html>

7th Mar 2019, 6:02 AM
Sanaa Hareb
Sanaa Hareb - avatar
1 Answer
+ 1
//You might need to know html structure first https://www.sololearn.com/learn/HTML/1022/
7th Mar 2019, 11:53 AM
Sudarshan Rai
Sudarshan Rai - avatar