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