Edit in JSFiddle

<h1>
Attribute Selectors</h1>
</h1>
Fname <input type="text" name="fname"><br><br>
Lname <input type="text" name="lname"><br><br>
Password <input type="password" name="password"><br><br>
Email   <input type="email" name="email"><br><br>
input[type]{
    width:300px;
    height:30px;
}
input[type="text"]{
    background-color: coral;
}
input[type="password"]{
    background-color: pink;
}
input[type="email"]{
    background-color: yellow;
}