html border form code example
Example 1: add border to input css
border: none;
border-bottom: 1px solid blue;
Example 2: input background color
<input style="background-color: gold;" type="text" value="">
Example 3: style input by type
/* Style input based on type */
input[type=text]
{
}