Edit in JSFiddle


              
    <h1>CSS Multiple Style Selectors</h1>
    <h2>CSS Multiple Style Selectors</h2>
    <h3>CSS Multiple Style Selectors</h3>
    <p>We can apply same style to multiple selectors</p>
body {
            background-color: grey;
        }
        
        h1,
        h2,
        h3,
        p {
            color: white;
            text-align: center;
        }