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