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