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