How to open a link in iframe ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to open a link in iframe ?

i need the complete code in html or css which can open the link in iframe . mean which can open a web page within web page ... plz inbox the code

3rd Apr 2017, 5:23 PM
hassan
1 Answer
+ 8
<iframe name="iframe1" src="target.html"></iframe> <a href="link.html" target="iframe1">link</a> (You can use Google for simple questions like this) (iframe is not supported by HTML5)
3rd Apr 2017, 5:31 PM
Maz
Maz - avatar