aboutsummaryrefslogtreecommitdiff
path: root/files/fr/glossaire/attribut/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/glossaire/attribut/index.html')
-rw-r--r--files/fr/glossaire/attribut/index.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/files/fr/glossaire/attribut/index.html b/files/fr/glossaire/attribut/index.html
deleted file mode 100644
index 54926f8b1f..0000000000
--- a/files/fr/glossaire/attribut/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
----
-title: Attribut
-slug: Glossaire/Attribut
-tags:
- - Encodage
- - Glossaire
- - HTML
-translation_of: Glossary/Attribute
----
-<p><span class="glossaryLink new">Un <em>attribut</em></span> vient compléter un {{Glossary("tag")}}. Sa présence peut être requise ou facultative. Il peut fournir des méta-informations ou changer le comportement du tag. La syntaxe est <code>name=value</code> où <em>name</em> est l'identificateur de l'attribut et <em>value</em> sa valeur attribuée.</p>
-
-<pre class="brush: html">&lt;!-- Voici un exemple de tag sans attribut --&gt;
-&lt;h2&gt;Titre&lt;/h2&gt;
-
-&lt;!-- Le même tag avec un attribut --&gt;
-&lt;!-- Le titre apparaît désormais sur un fond jaune --&gt;
-&lt;h2 style="background-color:yellow";&gt;Titre&lt;/h2&gt;</pre>
-
-<p>On peut aussi trouver des attributs sans valeur quand elle n'est pas nécessaire.</p>
-
-<pre class="brush: html">&lt;!-- Un tag avec un attribut indiquant que le champ est requis --&gt;
-&lt;input type="text" required&gt;
-
-&lt;!-- Cette notation fonctionne aussi --&gt;
-&lt;input type="text" required="required"&gt;</pre>
-
-<h2 id="Pour_approfondir">Pour approfondir</h2>
-
-<h3 id="Informations_techniques">Informations techniques</h3>
-
-<ul>
- <li><a href="https://developer.mozilla.org/fr/docs/Web/HTML/Attributs">Liste des attributs HTML</a></li>
- <li>Informations concernant les <a href="https://developer.mozilla.org/fr/docs/Web/HTML/Attributs_universels">attributs universels</a> en HTML.</li>
-</ul>