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