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