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