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