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