diff --git a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md index 67895c80e0..5ab93329f9 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-text-field.spanish.md @@ -7,17 +7,17 @@ localeTitle: Crear un campo de texto --- ## Description -
Ahora vamos a crear un formulario web. Los elementos de entrada son una forma conveniente de obtener información de su usuario. Puede crear una entrada de texto como esta: <input type="text"> Tenga en cuenta que input elementos de input se cierran automáticamente.
+
Ahora vamos a crear un formulario web. Los elementos de entrada son una forma conveniente de obtener información de su usuario. Puede crear una entrada de texto como esta: <input type="text"> Tenga en cuenta que los elementos input se cierran automáticamente.
## Instructions -
Cree un elemento de input de text de tipo debajo de sus listas.
+
Cree un elemento input de tipo >text debajo de sus listas.
## Tests
```yml tests: - - text: Su aplicación debe tener un elemento de input de text de tipo. + - text: Su aplicación debe tener un elemento de input de tipo text. testString: 'assert($("input[type=text]").length > 0, "Your app should have an input element of type text.");' ```