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