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