diff --git a/challenges/01-responsive-web-design/applied-accessibility.json b/challenges/01-responsive-web-design/applied-accessibility.json
index 7d455944ba..a304411202 100644
--- a/challenges/01-responsive-web-design/applied-accessibility.json
+++ b/challenges/01-responsive-web-design/applied-accessibility.json
@@ -614,7 +614,7 @@
"You may have noticed the text
and submit
input types in prior challenges, and HTML5 introduced an option to specify a date
field. Depending on browser support, a date picker shows up in the input
field when it's in focus, which makes filling in a form easier for all users.",
"For older browsers, the type will default to text
, so it helps to show users the expected date format in the label or as placeholder text just in case.",
"Here's an example:",
- "
<label for="input1">Enter a date (MM-DD-YYYY):</label>", + "
<input type="date" id="input1" name="input1">
<label for="input1">Enter a date:</label>", "
<input type="date" id="input1" name="input1">
input
tag with a type
attribute of \"date\", an id
attribute of \"pickdate\", and a name
attribute of \"date\"."
],
@@ -628,7 +628,7 @@
"