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