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