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