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