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