diff --git a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-form-element.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-form-element.spanish.md index ee97ebbd3f4..f21928fbd96 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-form-element.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/basic-html-and-html5/create-a-form-element.spanish.md @@ -7,10 +7,10 @@ localeTitle: Crear un elemento de formulario --- ## Description -
Puede crear formularios web que en realidad envíen datos a un servidor usando nada más que HTML puro. Puedes hacer esto especificando una acción en tu elemento de form . Por ejemplo: <form action="/url-where-you-want-to-submit-form-data"></form>
+
Puede crear formularios web que envíen datos reales a un servidor usando nada más que HTML. Puedes hacerlo especificando un action en tu elemento form . Por ejemplo: <form action="/url-where-you-want-to-submit-form-data"></form>
## Instructions -
Anida el campo de texto dentro de un elemento de form y agrega el atributo action="/submit-cat-photo" al elemento de formulario.
+
Anida el campo de texto dentro de un elemento form y agrega el atributo action="/submit-cat-photo" al elemento formulario.
## Tests
@@ -19,9 +19,9 @@ localeTitle: Crear un elemento de formulario tests: - text: Anida el elemento de entrada de texto dentro de un elemento de form . testString: 'assert($("form") && $("form").children("input") && $("form").children("input").length > 0, "Nest your text input element within a form element.");' - - text: Asegúrese de que su form tenga un atributo de action que esté establecido en /submit-cat-photo + - text: Asegúrese de que su form tenga un atributo action y cuyo valor sea /submit-cat-photo testString: 'assert($("form").attr("action") === "/submit-cat-photo", "Make sure your form has an action attribute which is set to /submit-cat-photo");' - - text: Asegúrese de que su elemento de form tenga etiquetas de apertura y cierre bien formadas. + - text: Asegúrese de que su elemento form tenga las etiquetas de apertura y cierre bien formadas. testString: 'assert(code.match(/<\/form>/g) && code.match(/
/g) && code.match(/<\/form>/g).length === code.match(//g).length, "Make sure your form element has well-formed open and close tags.");' ```