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