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