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