how to get rid of the box around a text input in html' code example
Example: html remove border from textarea
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}