Simple pie chart
A simple pie chart:
.piechart {
position: absolute;
width: 100px;
height: 100px;
border-radius: 50%;
background-image: conic-gradient(
pink 30deg,
lightgreen 0 120deg,
lightblue 0);
display: flex;
justify-content: center;
align-items: center;
}
<div class="piechart"></div>