Class Selector In CSS
<html>
<head>
<title>CSS Class Selector</title>
<style type="text/css">
.abc {
color: red;
font-size: 150%;
text-align:left;
font-family: book antiqua;
Text-decoration: none;
}
</style>
</head>
<body>
<p class="abc">This is about Class Selector</p>
<h1 class="abc">This is about Class Selector</h1>
</body>
</html>