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