<!DOCTYPE html>
<html>
<head>
<title>CSS Classes</title>
<style>
.highlight {
color: green;
font-weight: bold;
}
</style>
</head>
<body>
<p>This is a <span class="highlight">highlighted</span> word using CSS class.</p>
</body>
</html>