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