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