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