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