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