cssのみで 「フォルダ」 アイコンを作成してみました。
ソース
html
<div class="folder"></div>
css
/* 上 */ .folder { font-size: 100px; position: relative; width: 0.8em; height: 0.4em; background-color: #39a9d6; border-radius: 0.1em 0.1em 0 0; } /* 本体 */ .folder::before { content: ""; position: absolute; top: 0.3em; left: 0; width: 1.6em; height: 1.1em; background-color: #39a9d6; border-radius: 0 0.1em 0.1em 0.1em; }