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