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