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