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