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