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