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