Solar Eclipse using HTML and CSS

 <!DOCTYPE html>

<html>

    <head>

        <title>Solar Eclipse</title>

        <style>

            body {

    background-color:black;

}

div{

    margin-top:150px;

    margin-left:50px;

    height:300px;

    width:300px;

    background-color: black;

    box-shadow: 5px -10px 15px 3px gold;

    border-radius:150px;

    color:white;

}


        </style>

    </head>

    <body>

        <div></div>

    </body>

</html>


OUTPUT





Comments