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