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