<h3>Запись CSS-стилей для HTML-элемента по атрибуту</h3>

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

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

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.