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