<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 <head> est l'en-tête de la page web xhtml (balise de type BLOC). Tout ce que l'on insère dans la balise sont les en-têtes de document : <title>, <meta />, <link />, <script>. Ces en-têtes ne s'affichent pas dans le corps du document, c'est à dire dans la page web (à l'exception de la balise <title> qui s'affiche tout en haut du navigateur).
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" />
</head>
<body>
</body>
</html>
2024 © Fabien Branchut