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