x
 
<!DOCTYPE html>
<html>
<head>
<style>
h1.intro {
  color: blue;
}
p.important {
  color: green;
}
</style>
</head>
<body>
<h1 class="intro">标题 1</h1>
<p>一个段落。</p>
<p class="important">请注意这个重要的段落。:)</p>
</body>
</html>