cssのみで 「男性」 アイコンを作成してみました。
ソース
html
<div class="male"></div>
css
/* 体・脚 */
.male {
font-size: 100px;
position: relative;
margin: 0.4em auto;
width: 0.4em;
height: 0.6em;
background-color: #39a9d6;
border-radius: 0.1em;
box-shadow: 0 0.5em 0 -0.05em #39a9d6;
}
/* 頭 */
.male::before {
content: "";
position: absolute;
top: -0.3em;
left: 0.05em;
width: 0.3em;
height: 0.3em;
background-color:#39a9d6;
border-radius: 0.3em;
}

