--- id: bad87fee1348bd9aedf08829 title: Create a Text Field challengeType: 0 videoUrl: '' 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.
## Instructions
Cree un elemento de input de text de tipo debajo de sus listas.
## Tests
```yml tests: - text: Su aplicación debe tener un elemento de input de text de tipo. testString: 'assert($("input[type=text]").length > 0, "Your app should have an input element of type text.");' ```
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```
## Solution
```js // solution required ```