<html lang="en">
<head>
<title>CSS Class Selector</title>
<style>
p.mycol{
color: blue;
}
</style>
</head>
<body>
<p>This is a paragraph.</p>
<p class="mycol">Another paragraph in this example.</p>
<span class="mycol">This is the span element</span>
<p class="mycol">Third paragraph in this example.</p>
</body>
</html>