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