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