I'm trying to import an external source into a file CSS
So, this is my code CSS
:
body{
background-color: white
}
@font-face {
font-family: 'devgothic';
src: url('/fonts/devgothic.eot');
src: local('devgothic'), local('devgothic'), url('/fonts/devgothic.ttf') format('truetype');
}
.fonte {
font-family: 'devgothic';
color: purple;
}
Apparently, the folder structure is correct, but it just does not work.