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