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