CSS PIE CHART
HTML
<div class="pie">
<div class="cutout">
<div>25%</div>
</div>
<div class="fill"></div>
</div>
<div class="fill"></div>
CSS
.fill {
height:10PX;
width:10PX;
border:10px solid transparent;
border-bottom:10px solid red;
// transform:rotate(45deg);
}