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