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