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