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