I faced a problem in my layout. Can anyone help me make this shape using html / css?
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>