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