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