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