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