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