Circle with a plus in it.
by Wray Bowling
HTML
<span class="circle">+</span>
CSS
.circle{
display:inline-block;
width:2em;
line-height:2em;
border-radius:50%;
text-align:center;
}
span{
background-color:black;
color:white;
}