What is the HTML tag to display a warning to browsers that do not support Javascript? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

What is the HTML tag to display a warning to browsers that do not support Javascript?

28th Jun 2017, 3:10 PM
paola villasmil
paola villasmil - avatar
2 Answers
+ 17
<noscript><h1>Your browser does not support JavaScript!</h1></noscript>
28th Jun 2017, 3:13 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 2
You use the tag <noscript> </script> that can normally be used inside it the tag <body> </body>. Example: <html> <head> example </head> <body> <noscript> <p> Requires the use of javascript for its operation </p> </noscript> </body> </html>
3rd Jul 2017, 1:15 AM
Mileidy Nicolielly
Mileidy Nicolielly - avatar