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