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