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