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