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