I have Two sub-domains in my Wamp-server
in My Asset.localhost . I have css folder and , in this folder I have style.css file that contains @fontFace like Below Code :
@font-face {
font-family: 'yekan';
src: url('../fonts/Yekan-modified.eot');
src: url('../fonts/Yekan-modified.eot#iefix') format('embedded-opentype'),
url('../fonts/Yekan-modified.woff') format('woff'),
url('../fonts/Yekan-modified.ttf') format('truetype'),
url('../fonts/Yekan-modified.svg#CartoGothicStdBook') format('svg');
font-weight: normal;
font-style: normal;
}
- My font folder path is http://asset.localhost/admin/fonts/[MYFONTS]
- My css folder path is http://asset.localhost/admin/css/style.css
Now I'd like to use this file (style.css) to http://management.localhost/dashbord/index.php
Css codes works as well But Fonts Doesn't work ! Where is My Mistake ?
Thank You...