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