HTML <noframes> tag

HTML <noframes> tag : Definition


HTML5 does not supports this tag.

• The <noframes> tag was used in HTML4 to act as a fallback tag for the browser which do not support frames.

• It can also contain all the HTML tags which can be placed inside the <body> tag of a normal HTML page.

• It work only, if the browser does not support the frame tag else, it will be ignored by the browser.


Html <noframes> tag example

<!DOCTYPE html>  
<html>  
<head>  
    <title>Noframe tag example</title>  
</head>  
    <frameset cols="50%,50%">  
    


    <frame src="https://www.aimtocode.com/html-tutorial.html">  
    <frame src="https://www.aimtocode.com/html-tutorial.html">
    <noframes>Sorry! Your browser does not support frames.</noframes>    
   </frameset>  
</html>


Output :


  
      
    
    Sorry! Your browser does not support frames.    
   

if nothing is visible in above section it means your browser does not support frames.