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