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