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