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