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