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