HTML
<div class="triangle"></div>
CSS
.triangle {
width: 0;
height: 0;
border: 150px solid transparent;
border-top: 0;
border-bottom: 300px solid red;
}
handy quick code snippets to save time
HTML
<div class="triangle"></div>
CSS
.triangle {
width: 0;
height: 0;
border: 150px solid transparent;
border-top: 0;
border-bottom: 300px solid red;
}