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