--- id: bad87fee1348bd9aedf08829 title: Creare un campo di testo challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/c2EVnf6' forumTopicId: 16823 dashedName: create-a-text-field --- # --description-- Creiamo ora un modulo (form) web. Gli elementi `input` sono un modo conveniente per ottenere input dal tuo utente. Puoi creare un input di testo come questo: ```html ``` Nota che gli elementi `input` si auto-completano. # --instructions-- Crea un elemento `input` di tipo `text` sotto le tue liste. # --hints-- La tua app dovrebbe avere un elemento `input` di tipo `text`. ```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
```