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