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