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