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