
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we add a noframe section in HTML?
Use the <noframes> tag to add a noframe section. The HTML <noframes> tag is used to handle the browsers which do not support <frame> tag. This tag is used to display an alternate text message.
Example
<!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>
- Related Questions & Answers
- How do we add a noscript section in HTML?
- How do we include a section in an HTML document?
- How do we add a comment in HTML code?
- How do we add a definition term in HTML?
- How do we add a menu list in HTML?
- How do we add a table row in HTML?
- How do we add a push button to HTML?
- How do we add glossary definitions in HTML?
- How do we add bold text in HTML?
- How do we add document title in HTML?
- How do we add a sample computer code in HTML?
- How do we add a single-line input field in HTML?
- How do we create a footer for a document or section in HTML5?
- How do we add extra information about an element in HTML?
- How do we display a script in HTML?
Advertisements