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