I'm having trouble getting Icomoon fonts to display on my website. I downloaded the files and placed them in my /fonts directory, following the steps outlined here. I edited icomoon/style.css with the appropriate font-face code:
@font-face {
font-family: 'icomoon';
src:url('../fonts/icomoon.eot');
src:url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('../fonts/icomoon.woff') format('woff'),
url('../fonts/icomoon.ttf') format('truetype'),
url('../fonts/icomoon.svg') format('svg');
font-weight: normal;
font-style: normal;
}
Additionally, I included this line in my style.scss file: "@import "../fonts/icomoon/style.css";". Despite these efforts, when trying to add an icon on one of my pages, the icon does not appear. What could be causing this issue?