The HTML <noframes> tag

Not supported in HTML5.

<noframes> The tag was used in HTML 4 as a fallback tag for browsers that do not support frames.

What to use instead?

Usage <iframe> The tag embeds another document in the current HTML document:

<iframe src="https://www.codew3c.com"></iframe>

Try It Yourself