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