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