When I use
<i class="fas fa-angle-down"></i>
It will show an angle down, but when I add this to css it will show a square that means error, but there's nothing in console log.
.dropbtn:after {
font-family: "Font Awesome\ 5 Free";
content: "\f107";
position: absolute;
width: 100%;
left: 0;
text-align: center;
bottom: 4px;
line-height: 1;
}
How can I solve this? Thank you.