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