Use on the webTotal Use [ 5192 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8e47c0d4d55bc0546cfb334de7c766ad?family=MekanusADFTitlingStd-Italic" 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/8e47c0d4d55bc0546cfb334de7c766ad?family=MekanusADFTitlingStd-Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "MekanusADFTitlingStd-Italic";
src: url("https://db.onlinewebfonts.com/t/8e47c0d4d55bc0546cfb334de7c766ad.eot");
src: url("https://db.onlinewebfonts.com/t/8e47c0d4d55bc0546cfb334de7c766ad.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8e47c0d4d55bc0546cfb334de7c766ad.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8e47c0d4d55bc0546cfb334de7c766ad.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8e47c0d4d55bc0546cfb334de7c766ad.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8e47c0d4d55bc0546cfb334de7c766ad.svg#MekanusADFTitlingStd-Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "MekanusADFTitlingStd-Italic";