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