Hello I am new to codeigniter. I am using the external font file for my site through css. Here is my css code:
@font-face {
font-family: 'ElegantIcons';
src:url('http://localhost/findacare/font/ElegantIcons.eot'),
url('http://localhost/findacare/font/ElegantIcons.eot?#iefix') format('embedded-opentype'),
url('http://localhost/findacare/font/ElegantIcons.woff') format('woff'),
url('http://localhost/findacare/font/ElegantIcons.svg#ElegantIcons') format('svg'),
url('http://localhost/findacare/font/ElegantIcons.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
But i'm getting the following error file when i load the file
GET http://localhost/findacare/font/ElegantIcons.woff 404 (Not Found) manage_profile:1
GET http://localhost/findacare/font/ElegantIcons.svg 404 (Not Found) /findacare/font/ElegantIcons.svg#ElegantIcons:1
GET http://localhost/findacare/font/ElegantIcons.ttf 404 (Not Found) /findacare/font/ElegantIcons.ttf:1
And my file structure is:
findacare-
-application
-css
-font
-images
I checked many times even by giving absolute path. Could any one please help me.