

- 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 noscript section in HTML?
Use the <noscript> tag to add a noscript section in HTML. The HTML <noscript> tag is used to handle the browsers which do recognize <script> tag but do not support scripting. This tag is used to display an alternate text message.
Example
You can try to run the following code to add a noscript section −
<!DOCTYPE html> <html> <head> <title>HTML noscript Tag</title> </head> <body> <script> <!-- document.write("Hello JavaScript!") --> </script> <noscript> Your browser does not support JavaScript! </noscript> </body> </html>
- Related Questions & Answers
- How do we add a noframe 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?
- HTML <noscript> Tag
- How do we add extra information about an element in HTML?
Advertisements