form color in html code example
Example 1: how to color in html
<h1 style="color: red;">Hello</h1>
Example 2: html input background color
input[type="text"], textarea {
background-color : #d1d1d1;
}
Example 3: css color of input
input{
background-color: white; /*The color of your choice here*/
}
Example 4: input background color
<input style="background-color: gold;" type="text" value="">