Learn to make Bookmark logo using css only this article contains code and video tutorial
CSS Code
body{
margin:0;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.label{
width: 0;
height: 0;
border-top: 60px solid blue;
border-right: 30px solid blue;
border-bottom: 30px solid transparent;
border-left: 30px solid blue;
}
HTML Code
<div class="container">
<div class="label"></div>
</div>