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