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