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