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