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