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