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