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