--- id: bad87fee1348bd9aedf08829 title: Create a Text Field challengeType: 0 videoUrl: https://scrimba.com/p/pVMPUv/c2EVnf6 forumTopicId: 16823 localeTitle: Создание текстового поля --- ## Description
Теперь давайте создадим веб-форму. Элементы ввода - удобный способ ввода данных от пользователя. Вы можете создать текстовый ввод следующим образом: <input type="text"> Обратите внимание, что input элементы самозакрываются.
## Instructions
Создайте input элемент типа text ниже списков.
## Tests
```yml tests: - text: Your app should have an input element of type text. testString: assert($("input[type=text]").length > 0); ```
## 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
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```