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