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