HOW TO DESIGN MOON WITH HTML AND CSS SOURCE CODE


 HTML AND CSS SOURCE CODE

HTML FILE


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="index.css">
</head>
<body>
    
    <div class="div"></div>
</body>
</html>



CSS FILE



*
{
    margin0px;
}

body
{
    background-color: black;
}

.div
{
    width300px;
    height300px;
    margin20px auto;
    background-color: white;
    border-radius50%;
    box-shadow10px 20px 250px 20px white, 150px 150px 250px gray inset  ;
}

Comments