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