x
 
<!DOCTYPE html>
<html lang="en">
<head>
  <title> CSS Attribute Selector </title> 
  <meta charset="UTF-8"> 
<style>
  [title] {
    color:green;
   }
</style>
</head>
<body>
  <h1 title="heading">Attribute Selector</h1>
  <p title="paragraph">The color of this paragraph will be red.</p>
</body>
</html>