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