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