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