•  

    Text-shadow effect!

    HTML

    <h1>Text-shadow effect!</h1>
    

    CSS

    <style>
    h1 {
    color: white;
    text-shadow: 2px 2px 4px #000000;
    }
    </style>