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