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