How to create the traiangle using only HTML and CSS?
I need to create the thick triangle using only CSS
I already tried this code:
.arrow-up {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid black;
}
<span class="arrow-up"></span>