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