<h1>CSS Selectors</h1>

<form action="#">
  <input type="text">
  <input type="password">
</form>
input[type="text"] {
  color: green;
}

input[type="password"] {
  color: magenta;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.