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