I am having trouble in loading fonts from local and I am pointing to the directory. Can someone help me with it ?
Here is my code
@font-face {
font-family: 'My font';
src: url('./fonts/Myfonts-webfont.eot');
src: url('./fonts/Myfonts-webfont.eot?#iefix') format('embedded-opentype'),
url('./fonts/Myfonts-webfont.woff') format('woff'),
url('./fonts/Myfonts-webfont.ttf') format('truetype'),
url('./fonts/Myfonts-webfont.svg#my_fonts_otbook') format('svg');
font-weight: normal;
font-style: normal;
}
and using it as
.btn {
font-family: 'My font', sans-serif;
max-width: 100%;
width: 20%;
height: 8%;
}