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