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