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