--- id: bad87fee1348bd9aedf08829 title: Create a Text Field challengeType: 0 videoUrl: '' localeTitle: 创建文本字段 --- ## Description
现在让我们创建一个Web表单。输入元素是从用户获取输入的便捷方式。您可以创建如下文本输入: <input type="text">请注意, input元素是自动关闭的。
## Instructions
在列表下创建text类型的input元素。
## Tests
```yml tests: - text: 您的应用应具有text类型的input元素。 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 ```