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