Use on the webTotal Use [ 5947 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/60579246a44fa7e8a56c2cd12ff98dcd?family=MullerNarrow-LightItalic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/60579246a44fa7e8a56c2cd12ff98dcd?family=MullerNarrow-LightItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "MullerNarrow-LightItalic";
src: url("https://db.onlinewebfonts.com/t/60579246a44fa7e8a56c2cd12ff98dcd.eot");
src: url("https://db.onlinewebfonts.com/t/60579246a44fa7e8a56c2cd12ff98dcd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/60579246a44fa7e8a56c2cd12ff98dcd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/60579246a44fa7e8a56c2cd12ff98dcd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/60579246a44fa7e8a56c2cd12ff98dcd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/60579246a44fa7e8a56c2cd12ff98dcd.svg#MullerNarrow-LightItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "MullerNarrow-LightItalic";