Edit in JSFiddle

h1
{
    font-family: Arial;
    color: green;
}
h2, h3 /* We can apply style to more than one selector. */
{
    font-family: Monotype Corsiva;
    color: red;
    font-size: 28px;
}
<h1>India is My Country</h1>
<h2>All the Indians are my brothers and sisters</h2>
<h3>I love my country</h3>