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