Add the noframe part using the
<!DOCTYPE html> <html> <head> <title>HTML noframes Tag</title> </head> <frameset cols = "200, *"> <frame src = "/html/menu.htm" name = "menu_page" /> <frame src = "/html/main.htm" name = "main_page" /> <noframes> <body> Your browser does not support frames. </body> </noframes> </frameset> </html>
The above is the detailed content of How do we add a noframe section to HTML?. For more information, please follow other related articles on the PHP Chinese website!