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