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