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