<h1>CSS Selectors</h1>
<form action="#">
<input type="text">
<input type="password">
</form>
input[type="text"] {
color: green;
}
input[type="password"] {
color: magenta;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.