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