<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn CSS</title>
</head>
<body>
<h2>CSS [attribute|="value"] Selector</h2>
<p class="text">This will not get styled.</p>
<p class="first">This will get styled, because class name is "first".</p>
<p class="second">This will not get styled.</p>
<p class="first-text">This will get styled, because class name starts with "first".</p>
</body>
</html>