Search code examples
htmlcsslayout

How can I create this figure?


enter image description here

I faced a problem in my layout. Can anyone help me make this shape using html / css?


Solution

  • I'd suggest, with the following HTML:

    div {
      width: 20em;
      height: 20em;
      border-radius: 50%;
      background-color: #F0AC23;
      border: 4px solid #fff;
      box-shadow: 0 0 0 5px #F0AC23;
    }
    <div></div>