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