Reputation: 8357
I realize that frame
is removed in HTML5, and there must be great reason that they do it.
I wonder how to implement the same feature in HTML5.
Upvotes: 1
Views: 193
Reputation: 163
You could either use <iframe>
or try working with <object>
tags. I used <object>
once on a project that had to be HTML4 strict and it worked perfectly.
Upvotes: 1
Reputation: 50905
You can still use an iframe
. Would that be fine?
https://developer.mozilla.org/en-US/docs/HTML/Element/iframe
Upvotes: 2