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