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