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