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