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