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