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