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