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