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