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