Can someone please assist me in achieving the same shape using CSS3?
I am willing to give this a try.
.shape{
background:#000;
width:150px; margin:50px;
height:150px; color:#fff; border-radius:0 0 0px 25%;
-ms-transform: rotate(20deg); /* IE 9 */
-webkit-transform: rotate(20deg); /* Safari */
transform: rotate(20deg);
}
<div class="shape">magic</div>