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