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