diff options
Diffstat (limited to 'files/fr/learn/forms')
-rw-r--r-- | files/fr/learn/forms/how_to_build_custom_form_controls/example_1/index.md | 6 | ||||
-rw-r--r-- | files/fr/learn/forms/how_to_build_custom_form_controls/example_2/index.md | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/files/fr/learn/forms/how_to_build_custom_form_controls/example_1/index.md b/files/fr/learn/forms/how_to_build_custom_form_controls/example_1/index.md index 2cc868993f..00ad8747ef 100644 --- a/files/fr/learn/forms/how_to_build_custom_form_controls/example_1/index.md +++ b/files/fr/learn/forms/how_to_build_custom_form_controls/example_1/index.md @@ -149,7 +149,7 @@ C'est le premier exemple de code qui explique [comment construire un widget de f ### Resultat pour l'état initial -{{ EmbedLiveSample("Basic_state", 120, 130) }} +{{ EmbedLiveSample("État_initial", 120, 130) }} ## État actif @@ -289,7 +289,7 @@ C'est le premier exemple de code qui explique [comment construire un widget de f ### Résultat pour état actif -{{ EmbedLiveSample("Active_state", 120, 130) }} +{{ EmbedLiveSample("État_actif", 120, 130) }} ## État ouvert @@ -429,4 +429,4 @@ C'est le premier exemple de code qui explique [comment construire un widget de f ### Resultat pour état ouvert -{{ EmbedLiveSample("Open_state", 120, 130) }} +{{ EmbedLiveSample("État_ouvert", 120, 130) }} diff --git a/files/fr/learn/forms/how_to_build_custom_form_controls/example_2/index.md b/files/fr/learn/forms/how_to_build_custom_form_controls/example_2/index.md index 04696ac4a8..92c2e22837 100644 --- a/files/fr/learn/forms/how_to_build_custom_form_controls/example_2/index.md +++ b/files/fr/learn/forms/how_to_build_custom_form_controls/example_2/index.md @@ -12,7 +12,7 @@ Ceci est le deuxième exemple expliquant comment [construire un formulaire perso ## JS -### HTML Content +### HTML ```html <form class="no-widget"> @@ -37,7 +37,7 @@ Ceci est le deuxième exemple expliquant comment [construire un formulaire perso <form> ``` -### CSS Content +### CSS ```css .widget select, @@ -181,7 +181,7 @@ window.addEventListener("load", function () { ## Sans JS -### HTML Content +### HTML ```html <form class="no-widget"> @@ -206,7 +206,7 @@ window.addEventListener("load", function () { <form> ``` -### CSS Content +### CSS ```css .widget select, @@ -218,6 +218,6 @@ window.addEventListener("load", function () { } ``` -### Result for No JS +### Résultat -{{ EmbedLiveSample('No_JS', 120, 130) }} +{{ EmbedLiveSample('Sans_JS', 120, 130) }} |