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