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