Shane Hsu
Shane Hsu

Reputation: 8357

Frames in HTML 5

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

Answers (2)

mitnosirrag
mitnosirrag

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

Related Questions