HTML-тег: noscript

HTML-тег noscript помечает раздел, который включается только в том случае, если скриптинг не поддерживается или отключён.

Если используется внутри head элемента, noscript должен содержать только элементы link, style и meta.

Глобальные атрибуты.

Пример

<!DOCTYPE html>
<html lang="en">
<head>
    <script src="fancyFancy.js"></script>
    <noscript>
        <link href="aHaHaHaHaHaHaEvilLaugh.css" rel="stylesheet">
    </noscript>
</head>
<body>
<p>Hi. You look nice.</p>
<noscript>
    <p>Ha! Lies! You do not look nice.</p>
    <p>We are <strong>alien Mars aliens from Mars</strong>.</p>
    <p>We come to your planet to destroy you.</p>
    <p>We will destroy you by means of static HTML.</p>
    <p>You will be distracted by fancy fancy JavaScript.</p>
    <p>While you are distracted by fancy fancy JavaScript we will destroy you.</p>
    <p>Aaaaaaaaahahahahahahaha!</p>
</noscript>
</body>
</html>

Страницы в тему:

Все HTML-теги

a abbr address area article aside audio b base bdi bdo blockquote body br button canvas caption cite code col colgroup data datalist dd del dfn div dl dt em embed fieldset figcaption figure footer form h1 — h6 head header hr html i iframe img input ins kbd keygen label legend li link main map mark meta meter nav noscript object ol optgroup option output p param pre progress q rb rp rt rtc ruby s samp script section select small source span strong style sub sup table tbody td template textarea tfoot th thead time title tr track u ul var video wbr

Добавить комментарий