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