- index.html
 - style.css
 
HTML
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Shadow Art – 2</title>
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <div class="circle"></div>
  </body>
</html>
CSS
body {
  padding: 20px;
  background-color: white;
}
.circle {
  margin: 10px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow:
    inset -5px -5px 5px 3px white,
    inset 0 0 0 9px #6c6d70,
    inset 0 0 0 10px black;
}
You’ve gone to a different page
Goalscompleted
0
Add three more inner shadows. For each new shadow, add it to the beginning of the list of shadows.
- Stretch of 
5px, color:black, inner. - Stretch of 
4px, color:#4f5054, inner. - Both offsets of 
2px, feathering of2px, color:white, inner. 
Comments