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