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