<noscript>
- Courses
- HTML
- HTML top level tags
- <noscript>
What is the purpose of the
What happens to the <noscript>
element when scripting is enabled?
What content is permitted inside the <noscript>
element?
Where can the <noscript>
element be placed within an HTML document?
What attributes are available for the <noscript>
element?
What is the role of the <noscript>
element in the following code?
<head>
<noscript>
<style>
body { background-color: #f3f3f3; }
</style>
</noscript>
</head>
What is the result of the following code with scripting enabled?
<noscript>
<a href="https://www.mozilla.org/">External Link</a>
</noscript>
<p>Rocks</p>