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