<a>
<abbr>
<acronym>
<address>
<area />
<bdo>
<blockquote>
<body>
<br />
<button>
<caption>
<cite>
<code>
<dd>
<del>
<dfn>
<div>
<dl>
<dt>
<em>
<fieldset>
<form>
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<head>
<hr />
<html>
<img />
<input />
<ins>
<kbd>
<label>
<legend>
<li>
<link />
<map>
<meta />
<noscript>
<object>
<ol>
<optgroup>
<option>
<p>
<param />
<pre>
<q>
<samp>
<script>
<select>
<span>
<strong>
<style>
<sub>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<title>
<tr>
<ul>
<var>
La balise <noscript> permet d'afficher un texte alternatif aux scripts de la page web xhtml (balise de type BLOC). Ainsi, la balise <noscript> vous permet d'afficher un texte si le navigateur de l'internaute n'interprête pas les scripts (l'interpretation des scripts pouvant être aussi désactivée volontairement).
Utilisation d'un script interne. Cet exemple utilise le doctype xhtml strict 1.0.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Titre de la page</title>
<meta name="keywords" lang="fr" content="motcle1,mocle2" />
<meta name="description" content="Description de ma page web." />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Language" content="fr" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
// <![CDATA[
alert("I love Xhtml");
//]]>
</script>
<noscript>
I love Xhtml !
</noscript>
</head>
<body>
<div>
Ici, mon texte.
</div>
</body>
</html>
2024 © Fabien Branchut