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