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