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