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