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