--- id: bad87fee1348bd9aedf08829 title: テキストフィールドを作成する challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/c2EVnf6' forumTopicId: 16823 dashedName: create-a-text-field --- # --description-- では、ウェブフォームを作成しましょう。 `input` 要素はユーザーからの入力を得る便利な方法です。 次のようにしてテキスト入力欄を作成できます。 ```html ``` `input` 要素は終了タグを持たないことに注意してください。 # --instructions-- リストの下に `text` タイプの `input` 要素を作成してください。 # --hints-- `text` タイプの `input` 要素が必要です。 ```js assert($('input[type=text]').length > 0); ``` # --seed-- ## --seed-contents-- ```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
``` # --solutions-- ```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
```