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