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