input[type] {
  border: 2px solid red;
}
input[type="text"] {
  background-color: lightgreen;
}
input[type="email"] {
  background-color: lightblue;
}
input[type="button"] {
  border: 2px solid black;
  background-color: orangered;
  font-weight: bold;
  cursor: pointer;
}
p[title^="I"] {
  color: purple;
  font-weight: bold;
}
p[title$="am"] {
  color: blue;
  font-family: monospace;
}
p[title~="words"] {
  color: green;
  text-decoration: underline;
}