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