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