RobeySmith
New Coder

I wish to achieve this effect with CSS+div, how would I do this? or would it be easier on canvas?
body {
font-size:80pt;
}
.round {
border-radius: 100%;
background-color:#888;
height: 300px;
width: 300px;
margin: 300px auto;
display: block;
}
<div class="round">T</div>
Not really sure what to do?