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