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