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