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