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