<h2>Attribute Selector</h2>
First Name: <input type="text"><br>
Last Name: <input type="text"><br>
Email: <input type="email"><br>
input{
border: 2px solid green;
}
input[type='email']{
border: 3px solid red;
background-color:orange;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.