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