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