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