+ 4
What is the HTML tag to display a warning to browsers that do not support Javascript?
2 Answers
+ 17
<noscript><h1>Your browser does not support JavaScript!</h1></noscript>
+ 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>