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