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