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