Create a triangle with CSS
CSS
.triangle{
width: 0;
height: 0;
border-left: 130px solid transparent;
border-right: 130px solid transparent;
border-bottom: 15px solid white;
}
HTML
<div class="triangle"></div>
CSS
.triangle{
width: 0;
height: 0;
border-left: 130px solid transparent;
border-right: 130px solid transparent;
border-bottom: 15px solid white;
}
HTML
<div class="triangle"></div>