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