cara membuat kotak teks lebih pendek di html

just use

textarea {
    width: 200px;
}

or 

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