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