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