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