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