From b8411e69dbd90d499f9fe2f485c22511cf8b6505 Mon Sep 17 00:00:00 2001
From: SphinxKnight
Date: Sun, 7 Nov 2021 21:04:18 +0100
Subject: Fix HTML live sample errors (#3002)
---
files/fr/web/html/applying_color/index.md | 4 ++--
files/fr/web/html/attributes/accept/index.md | 6 +++---
files/fr/web/html/attributes/capture/index.md | 2 +-
files/fr/web/html/attributes/disabled/index.md | 6 +++---
files/fr/web/html/attributes/maxlength/index.md | 2 +-
files/fr/web/html/attributes/min/index.md | 4 ++--
files/fr/web/html/attributes/minlength/index.md | 2 +-
files/fr/web/html/attributes/multiple/index.md | 6 +++---
files/fr/web/html/attributes/pattern/index.md | 4 ++--
files/fr/web/html/attributes/readonly/index.md | 6 +++---
files/fr/web/html/attributes/required/index.md | 4 ++--
files/fr/web/html/attributes/size/index.md | 2 +-
files/fr/web/html/attributes/step/index.md | 4 ++--
files/fr/web/html/block-level_elements/index.md | 2 +-
files/fr/web/html/element/a/index.md | 16 ++++++++--------
files/fr/web/html/element/abbr/index.md | 8 ++++----
files/fr/web/html/element/address/index.md | 2 +-
files/fr/web/html/element/applet/index.md | 2 +-
files/fr/web/html/element/area/index.md | 6 +++---
files/fr/web/html/element/aside/index.md | 2 +-
files/fr/web/html/element/bdo/index.md | 2 +-
files/fr/web/html/element/big/index.md | 2 +-
files/fr/web/html/element/blockquote/index.md | 2 +-
files/fr/web/html/element/br/index.md | 4 ++--
files/fr/web/html/element/button/index.md | 2 +-
files/fr/web/html/element/canvas/index.md | 4 ++--
files/fr/web/html/element/cite/index.md | 2 +-
files/fr/web/html/element/code/index.md | 2 +-
files/fr/web/html/element/datalist/index.md | 2 +-
files/fr/web/html/element/del/index.md | 2 +-
files/fr/web/html/element/details/index.md | 14 +++++++-------
files/fr/web/html/element/dfn/index.md | 8 ++++----
files/fr/web/html/element/dialog/index.md | 2 +-
files/fr/web/html/element/div/index.md | 6 +++---
files/fr/web/html/element/dl/index.md | 6 +++---
files/fr/web/html/element/em/index.md | 2 +-
files/fr/web/html/element/fieldset/index.md | 4 ++--
files/fr/web/html/element/figure/index.md | 8 ++++----
files/fr/web/html/element/form/index.md | 8 ++++----
files/fr/web/html/element/iframe/index.md | 6 +++---
files/fr/web/html/element/img/index.md | 18 +++++++++---------
files/fr/web/html/element/input/range/index.md | 4 ++--
files/fr/web/html/element/kbd/index.md | 4 ++--
files/fr/web/html/element/ol/index.md | 12 ++++++------
files/fr/web/html/element/tr/index.md | 10 +++++-----
files/fr/web/html/inline_elements/index.md | 4 ++--
46 files changed, 115 insertions(+), 115 deletions(-)
(limited to 'files')
diff --git a/files/fr/web/html/applying_color/index.md b/files/fr/web/html/applying_color/index.md
index ae03220e48..7105370356 100644
--- a/files/fr/web/html/applying_color/index.md
+++ b/files/fr/web/html/applying_color/index.md
@@ -227,7 +227,7 @@ La façon la plus simple (et la plus fréquemment utilisée) pour appliquer des
Prenons un exemple et commençons par le résultat :
-{{EmbedLiveSample("Specifying_colors_in_stylesheets", 650, 200)}}
+{{EmbedLiveSample("Indiquer_les_couleurs_via_une_feuille_de_style", 650, 200)}}
#### HTML
@@ -330,7 +330,7 @@ Lorsqu'on choisit une couleur via un élément ``, la valeur stockée dan
Prenons un exemple simple où l'utilisateur choisit une couleur qui est immédiatement appliquée sur la bordure de l'exemple. Une fois la couleur finale sélectionnée, la valeur du sélecteur de couleur est affichée.
-{{EmbedLiveSample("Example_Picking_a_color", 525, 275)}}
+{{EmbedLiveSample("Exemple_sélectionner_une_couleur", 525, 275)}}
> **Note :** Sur macOS, pour indiquer qu'on a fini de choisir la couleur, il faut fermer la fenêtre du sélecteur de couleur.
diff --git a/files/fr/web/html/attributes/accept/index.md b/files/fr/web/html/attributes/accept/index.md
index fca3d327d7..66c18d9ef0 100644
--- a/files/fr/web/html/attributes/accept/index.md
+++ b/files/fr/web/html/attributes/accept/index.md
@@ -54,7 +54,7 @@ Lorsque cet attribut est utilisé sur un champ permettant de sélectionner un fi
```
-{{EmbedLiveSample('examples', '', 160)}}
+{{EmbedLiveSample('Exemples', '', 160)}}
Notez que le dernier exemple vous permet de sélectionner plusieurs images. Voir l'attribut [`multiple`](multiple) pour plus d'informations.
@@ -98,7 +98,7 @@ div {
Cela produit le résultat suivant :
-{{EmbedLiveSample('a_basic_example', 650, 100)}}
+{{EmbedLiveSample('Utilisation_des_champs_pour_saisir_des_fichiers', 650, 100)}}
> **Note :** Vous pouvez trouver cet exemple sur GitHub également - voir le [code source](https://github.com/mdn/learning-area/blob/master/html/forms/file-examples/simple-file.html), et aussi [le fonctionnement en direct](https://mdn.github.io/learning-area/html/forms/file-examples/simple-file.html).
@@ -138,7 +138,7 @@ div {
}
```
-{{EmbedLiveSample('limiting_accepted_file_types', 650, 100)}}
+{{EmbedLiveSample('Restreindre_les_types_de_fichier_acceptés', 650, 100)}}
## Spécifications
diff --git a/files/fr/web/html/attributes/capture/index.md b/files/fr/web/html/attributes/capture/index.md
index 887afc93fd..d726e7cdb4 100644
--- a/files/fr/web/html/attributes/capture/index.md
+++ b/files/fr/web/html/attributes/capture/index.md
@@ -42,7 +42,7 @@ Lorsqu'ils sont définis sur un type d'entrée de fichier, les systèmes d'explo
```
-{{EmbedLiveSample('examples', '', 200)}}
+{{EmbedLiveSample('Exemples', '', 200)}}
Notez que ceux-ci fonctionnent mieux sur les appareils mobiles ; si votre appareil est un ordinateur de bureau, vous obtiendrez probablement un sélecteur de fichiers classique.
diff --git a/files/fr/web/html/attributes/disabled/index.md b/files/fr/web/html/attributes/disabled/index.md
index 9ce0368c12..b234a0f8a9 100644
--- a/files/fr/web/html/attributes/disabled/index.md
+++ b/files/fr/web/html/attributes/disabled/index.md
@@ -17,7 +17,7 @@ L'attribut `disabled` est utilisé par [`