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