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