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