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