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