From 9ebaa10eeaa03419afea33b1002271d861824d38 Mon Sep 17 00:00:00 2001 From: Bannon Tanner Date: Fri, 8 Mar 2019 02:31:47 -0600 Subject: [PATCH] added clarification in test text (#26458) * added clarification in test text fix to issue #17490 * moved the note from the test text to description * fix: updated note sytnax --- .../add-placeholder-text-to-a-text-field.english.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field.english.md index bca818e6c4..813ef8a27c 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field.english.md @@ -9,7 +9,8 @@ videoUrl: 'https://scrimba.com/p/pVMPUv/cKdJDhg'
Placeholder text is what is displayed in your input element before your user has inputted anything. You can create placeholder text like so: -<input type="text" placeholder="this is placeholder text"> +<input type="text" placeholder="this is placeholder text">
+Note: Remember that input elements are self-closing.
## Instructions