javascript - Problems with fonts css -


when publish iis project in mvc, following errors

get http://localhost:8082/elaguilaportal/content/content/font/socicon-webfont.woff                                         (index):398 http://localhost:8082/elaguilaportal/content/content/font/socicon-webfont.woff2                                        (index):1 http://localhost:8082/elaguilaportal/content/lib/materialize/font/material-design-icons/material-design-icons.woff2    (index):483  http://localhost:8082/elaguilaportal/content/content/font/socicon-webfont.ttf                                          (index):483 

the paths of files correct ****

this how errors in link left enter image description here

checking many forums on internet tried many things none works me, route correct, in addition files if indicated

this how refer

@font-face {   font-family: 'socicon';   src: url('../font/socicon-webfont.eot');   src: url('../font/socicon-webfont.eot?#iefix') format('embedded-opentype'),    url('../font/socicon-webfont.woff') format('woff'), url('../font/socicon-   webfont.woff2') format('woff2'), url('../font/socicon-webfont.ttf')    format('truetype'), url('../font/socicon-webfont.svg#sociconregular')    format('svg');   font-weight: normal;   font-style: normal;   text-transform: initial; }  @font-face {   font-family: "material-design-icons";   src: url("../font/material-design-icons/material-design-icons.eot?#iefix")                     format("embedded-opentype"), url("../font/material-design-icons/material-   design-icons.woff2") format("woff2"), url("../font/material-design-   icons/material-design-icons.woff") format("woff"), url("../font/material-   design-icons/material-design-icons.ttf") format("truetype"),    url("../font/material-design-icons/material-design-icons.svg#material-   design-icons") format("svg");   font-weight: normal;   font-style: normal;  } 

does know going on?

structure of solution link


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

minify - Minimizing css files -

php - How to remove letter in front of the word laravel -