I am trying to draw the image attached below using HTML and CSS but I am not able to get my expected output.
<html>
<style type="text/css">
#center_cir {
border-left: 48px solid transparent;
border-right: 50px solid transparent;
height: 0;
width: 100px;
border-top: 100px solid red;
border-top-left-radius:60px;
border-top-right-radius:60px;
}
#circle {
width: 140px;
height: 120px;
background: red;
-moz-border-radius: 60px;
-webkit-border-radius: 60px;
border-radius: 60px;
}
</style>
<div id="center_cir">
<!--<div id="circle">
</div>-->
</div>
</html>