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