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