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