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