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