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