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