comment rendre la zone de texte plus courte en html

just use

textarea {
    width: 200px;
}

or 

input[type="text"] {
    width: 200px;
}
Funny Fowl