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